Skip to content
Snippets Groups Projects
Commit 2d3cdabb authored by Alán Muñoz's avatar Alán Muñoz
Browse files

tweak(imageviewer):add TODO for RGB image

parent e845e203
No related branches found
No related tags found
No related merge requests found
...@@ -343,8 +343,8 @@ class remoteImageViewer: ...@@ -343,8 +343,8 @@ class remoteImageViewer:
if norm and norm in ("l1", "l2", "max"): if norm and norm in ("l1", "l2", "max"):
images = {k: stretch_image(v) for k, v in images.items()} images = {k: stretch_image(v) for k, v in images.items()}
# images = [concat_pad(img, width, nrows) for img in images.values()]
images = [concat_pad(img, width, nrows) for img in images.values()] images = [concat_pad(img, width, nrows) for img in images.values()]
# TODO convert to RGB to draw fluorescence with colour
tiled_imgs = {} tiled_imgs = {}
tiled_imgs["img"] = np.concatenate(images, axis=0) tiled_imgs["img"] = np.concatenate(images, axis=0)
tiled_imgs["cell_labels"] = np.concatenate( tiled_imgs["cell_labels"] = np.concatenate(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment