You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"If enabled, data will be kept on the RAM rather than the VRAM.\nCan avoid out of memory issues with CUDA"
236
237
)
237
238
self.instance_box.setToolTip(
238
-
"Instance segmentation will convert instance (0/1) labels to labels that attempt to assign an unique ID to each cell."
239
+
"Instance segmentation will convert instance (0/1) labels to labels"
240
+
" that attempt to assign an unique ID to each cell."
239
241
)
240
242
self.instance_method_choice.setToolTip(
241
243
"Choose which method to use for instance segmentation"
242
-
"\nConnected components : all separated objects will be assigned an unique ID. Robust but will not work correctly with adjacent/touching objects\n"
243
-
"Watershed : assigns objects ID based on the probability gradient surrounding an object. Requires the model to surround objects in a gradient; can possibly correctly separate unique but touching/adjacent objects."
244
+
"\nConnected components : all separated objects will be assigned an unique ID. "
245
+
"Robust but will not work correctly with adjacent/touching objects\n"
246
+
"Watershed : assigns objects ID based on the probability gradient surrounding an object. "
247
+
"Requires the model to surround objects in a gradient;"
248
+
" can possibly correctly separate unique but touching/adjacent objects."
244
249
)
245
250
self.instance_prob_thresh.setToolTip(
246
251
"All objects below this probability will be ignored (set to 0)"
0 commit comments