We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5994ef3 commit 0be62b7Copy full SHA for 0be62b7
1 file changed
src/imcflibs/imagej/objects3d.py
@@ -91,6 +91,7 @@ def segment_3d_image(imp, title=None, min_thresh=1, min_vol=None, max_vol=None):
91
92
seg = labeler.getLabels(img)
93
seg.setScale(cal.pixelWidth, cal.pixelDepth, cal.getUnits())
94
- seg.setTitle(title)
+ if title:
95
+ seg.setTitle(title)
96
97
return seg.getImagePlus()
0 commit comments