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
self.window_infer_box.setToolTip("Sliding window inference runs the model on parts of the image"
250
+
"\nrather than the whole image, to reduce memory requirements."
251
+
"\nUse this if you have large images.")
252
+
self.window_size_choice.setToolTip("Size of the window to run inference with (in pixels)")
253
+
self.keep_data_on_cpu_box.setToolTip("If enabled, data will be kept on the RAM rather than the VRAM.\nCan avoid out of memory issues with CUDA")
254
+
self.instance_box.setToolTip("Instance segmentation will convert instance (0/1) labels to labels that attempt to assign an unique ID to each cell.")
255
+
self.instance_method_choice.setToolTip("Choose which method to use for instance segmentation"
256
+
"\nConnected components : all separated objects will be assigned an unique ID. Robust but will not work correctly with adjacent/touching objects\n"
257
+
"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.")
258
+
self.instance_prob_thresh.setToolTip("All objects below this probability will be ignored (set to 0)")
259
+
self.instance_small_object_thresh.setToolTip("Will remove all objects smaller (in volume) than the specified number of pixels")
260
+
self.save_stats_to_csv_box.setToolTip("Will save several statistics for each object to a csv in the results folder. Stats include : volume, centroid coordinates, sphericity")
0 commit comments