diff concat_channels.py @ 1:31c8c700d98d draft default tip

planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/concat_channels/ commit b2acc1845a25828181597fe5b6982fe116a7796d
author imgteam
date Mon, 22 Jul 2019 04:56:23 -0400
parents 24d64e0a405f
children
line wrap: on
line diff
--- a/concat_channels.py	Sat Feb 09 14:15:33 2019 -0500
+++ b/concat_channels.py	Mon Jul 22 04:56:23 2019 -0400
@@ -11,7 +11,7 @@
         raw_image = skimage.io.imread(image_path)
         if len(raw_image.shape) == 2:
             if axis == 0:
-                raw_image = [raw_image]
+                raw_image = [raw_image] 
             else:
                 raw_image = np.expand_dims(raw_image, 2)
         images.append(raw_image)