diff --git a/qim3d/viz/colormaps/_segmentation.py b/qim3d/viz/colormaps/_segmentation.py index 523714f849cef17f39a2cb855df305334728d844..e765e19bbafe152fb110ef6fc454fb78d990c317 100644 --- a/qim3d/viz/colormaps/_segmentation.py +++ b/qim3d/viz/colormaps/_segmentation.py @@ -80,8 +80,13 @@ def segmentation( binary = qim3d.filters.gaussian(vol, sigma = 2) < 60 labeled_volume, num_labels = qim3d.segmentation.watershed(binary) +<<<<<<< HEAD color_map = qim3d.viz.colormaps.segmentation(num_labels, style = 'bright') qim3d.viz.slicer(labeled_volume, slice_axis = 1, color_map=color_map) +======= + cmap = qim3d.viz.colormaps.segmentation(num_labels, style = 'bright') + qim3d.viz.slicer(labeled_volume, slice_axis = 1, color_map=cmap) +>>>>>>> c82fb8c (More changes) ``` 