From e82a6e8776f2d8b24403b2604aee2e22ff024fd9 Mon Sep 17 00:00:00 2001
From: monadal <morgane.nadal@inria.fr>
Date: Mon, 16 Mar 2020 15:44:50 +0100
Subject: [PATCH] created parameters.ini file (todo: clean up) + still working
 on PySide2 for ImageVerification()

---
 brick/processing/input.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/brick/processing/input.py b/brick/processing/input.py
index b532ce8..f3bcee7 100644
--- a/brick/processing/input.py
+++ b/brick/processing/input.py
@@ -47,7 +47,7 @@ def ImageVerification(image: array_t, channel: str) -> array_t:
 
     # Verification of the dimension of the image and its coherence with the parameters (channel)
     elif image.ndim == 3:
-        print('Your image has only one color channel.')
+        print('The image has only one color channel.')
         if channel is not None:
             raise ValueError('The image has only 3 dimensions. However, a value for the "channel" parameter is '
                              'specified. Give the channel the value None')
-- 
GitLab