Mercurial > repos > imgteam > concat_channels
diff concat_channels.py @ 1:d42501109c05 draft
planemo upload for repository https://github.com/BMCV/galaxy-image-analysis/tools/concat_channels/ commit b2acc1845a25828181597fe5b6982fe116a7796d
author | imgteam |
---|---|
date | Mon, 22 Jul 2019 05:02:26 -0400 |
parents | 30517f733f7b |
children | 212627bfb759 |
line wrap: on
line diff
--- a/concat_channels.py Sat Feb 09 14:33:14 2019 -0500 +++ b/concat_channels.py Mon Jul 22 05:02:26 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)