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
Copy file name to clipboardExpand all lines: micro_sam/sam_annotator/_tooltips.py
+42-44Lines changed: 42 additions & 44 deletions
Original file line number
Diff line number
Diff line change
@@ -3,52 +3,52 @@
3
3
4
4
tooltips= {
5
5
"embedding": {
6
-
"custom_weights": "Select a path for custom weights.",
6
+
"custom_weights": "Select custom model weights. For example for a model you have finetuned",
7
7
"device": "Select the computational device to use for processing.",
8
-
"embeddings_save_path": "Path to save the computed image embeddings.",
9
-
"halo": """Enter values to activate halo. Only x value for quadratic halo and both for custom.
10
-
Only active when tiling is active.""",
11
-
"image": "Select an image to segment objects.",
12
-
"model": "Select a model to use for segmentation tasks.",
13
-
"prefer_decoder": "Choose if to use segmentation decoder.",
14
-
"run_button": "Compute embeddings or load embeddings if embeddings file path is specified.",
15
-
"settings": "",
16
-
"tiling": "Enter values to activate tiling. Only x-value for quadratic tiling or both values for custom tiling.",
17
-
# ... other tooltips for embedding widgets ...
8
+
"embeddings_save_path": "Select path to save or load the computed image embeddings.",
9
+
"halo": "Enter overlap values for computing tiled embeddings. Enter only x-value for quadratic size.\n Only active when tiling is used.",
10
+
"image": "Select the napari image layer.",
11
+
"model": "Select the segment anything model.",
12
+
"prefer_decoder": "Choose if the segmentation decoder is used for automatic segmentation. Only if it is available for the selected model..",
13
+
"run_button": "Compute embeddings or load embeddings if embedding_save_path is specified.",
14
+
"tiling": "Enter tile size for computing tiled embeddings. Enter only x-value for quadratic size or both for non-quadratic.",
18
15
},
19
16
"segmentnd": {
20
-
"box_extension": "box_extension",
21
-
"custom_weights": "Path to the file containing pre-trained weights for the segmentation model.",
22
-
"iou_threshold": "iou_threshold",
23
-
"motion_smoothing": "motion_smoothing",
24
-
"projection_dropdown": "projection dropdown",
25
-
"settings": "",
26
-
# ... other tooltips for segmentation widgets ...
17
+
"box_extension": "Enter factor by which box size is increased when projecting to adjacent slices. Larger factors help if object sizes change between slices.",
18
+
"iou_threshold": "Enter the minimal overlap between objects in adjacent slices to continue segmentation.",
19
+
"motion_smoothing": "Enter the motion smoothing factor. It is used to follow objects which have a directed movement, higher values help for objects that are moving fast.",
20
+
"projection_dropdown": "Choose the projection mode. It determines which prompts are derived from the masks projected to adjacent frames to rerun SAM.",
"apply_to_volume": "Choose if automatic segmentation is run for the full volume or only the current slice.",
25
+
"gap_closing": "Enter value for closing gaps across slices for volumetric segmentation. Higher values will reduce artifacts due to missing slices in objects but may lead to wrongly merging objects.",
26
+
"min_extent": "Enter the minimal number of slices for objects in volumetric segmentation. To filter out small segmentation artifacts.",
27
+
"min_object_size": "Enter the minimal object size in pixels. This refers to the size per slice for volumetric segmentation.",
0 commit comments