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: doc/annotation_tools.md
+12-5Lines changed: 12 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,11 +19,18 @@ The annotation tools can be started from the napari plugin menu:
19
19
20
20
You can find additional information on the annotation tools [in the FAQ section](#usage-question).
21
21
22
+
HINT: If you would like to start napari to use `micro-sam` from the plugin menu, you must start it by activating the environment where `micro-sam` has been installed using:
23
+
24
+
```bash
25
+
$ mamba activate <ENVIRONMENT_NAME>
26
+
$ napari
27
+
```
28
+
22
29
23
30
## Annotator 2D
24
31
25
32
The 2d annotator can be started by
26
-
- clicking `Annotator 2d` in the plugin menu.
33
+
- clicking `Annotator 2d` in the plugin menu after starting `napari`.
27
34
- running `$ micro_sam.annotator_2d` in the command line.
28
35
- calling `micro_sam.sam_annotator.annotator_2d` in a python script. Check out [examples/annotator_2d.py](https://github.com/computational-cell-analytics/micro-sam/blob/master/examples/annotator_2d.py) for details.
29
36
@@ -55,7 +62,7 @@ Check out [the video tutorial](https://youtu.be/9xjJBg_Bfuc) for an in-depth exp
55
62
## Annotator 3D
56
63
57
64
The 3d annotator can be started by
58
-
- clicking `Annotator 3d` in the plugin menu.
65
+
- clicking `Annotator 3d` in the plugin menu after starting `napari`.
59
66
- running `$ micro_sam.annotator_3d` in the command line.
60
67
- calling `micro_sam.sam_annotator.annotator_3d` in a python script. Check out [examples/annotator_3d.py](https://github.com/computational-cell-analytics/micro-sam/blob/master/examples/annotator_3d.py) for details.
61
68
@@ -81,7 +88,7 @@ Check out [the video tutorial](https://youtu.be/nqpyNQSyu74) for an in-depth exp
81
88
## Annotator Tracking
82
89
83
90
The tracking annotator can be started by
84
-
- clicking `Annotator Tracking` in the plugin menu.
91
+
- clicking `Annotator Tracking` in the plugin menu after starting `napari`.
85
92
- running `$ micro_sam.annotator_tracking` in the command line.
86
93
- calling `micro_sam.sam_annotator.annotator_tracking` in a python script. Check out [examples/annotator_tracking.py](https://github.com/computational-cell-analytics/micro-sam/blob/master/examples/annotator_tracking.py) for details.
87
94
@@ -107,7 +114,7 @@ Check out [the video tutorial](https://youtu.be/1gg8OPHqOyc) for an in-depth exp
107
114
## Image Series Annotator
108
115
109
116
The image series annotation tool enables running the [2d annotator](#annotator-2d) or [3d annotator](#annotator-3d) for multiple images that are saved in a folder. This makes it convenient to annotate many images without having to restart the tool for every image. It can be started by
110
-
- clicking `Image Series Annotator` in the plugin menu.
117
+
- clicking `Image Series Annotator` in the plugin menu after starting `napari`.
111
118
- running `$ micro_sam.image_series_annotator` in the command line.
112
119
- calling `micro_sam.sam_annotator.image_series_annotator` in a python script. Check out [examples/image_series_annotator.py](https://github.com/computational-cell-analytics/micro-sam/blob/master/examples/image_series_annotator.py) for details.
113
120
@@ -126,7 +133,7 @@ Check out [the video tutorial](https://youtu.be/HqRoImdTX3c) for an in-depth exp
126
133
127
134
## Finetuning UI
128
135
129
-
We also provide a graphical inferface for fine-tuning models on your own data. It can be started by clicking `Finetuning` in the plugin menu.
136
+
We also provide a graphical inferface for fine-tuning models on your own data. It can be started by clicking `Finetuning` in the plugin menu after starting `napari`.
130
137
131
138
**Note:** if you know a bit of python programming we recommend to use a script for model finetuning instead. This will give you more options to configure the training. See [these instructions](#training-your-own-model) for details.
Copy file name to clipboardExpand all lines: doc/faq.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -146,13 +146,13 @@ NOTE: It is important to choose the correct model type when you opt for the abov
146
146
147
147
### 1. I have a microscopy dataset I would like to fine-tune Segment Anything for. Is it possible using `micro_sam`?
148
148
Yes, you can fine-tune Segment Anything on your own dataset. Here's how you can do it:
149
-
- Check out the [tutorial notebook](https://github.com/computational-cell-analytics/micro-sam/blob/master/notebooks/micro-sam-finetuning.ipynb) on how to fine-tune Segment Anything with our `micro_sam.training` library.
149
+
- Check out the [tutorial notebook](https://github.com/computational-cell-analytics/micro-sam/blob/master/notebooks/sam_finetuning.ipynb) on how to fine-tune Segment Anything with our `micro_sam.training` library.
150
150
- Or check the [examples](https://github.com/computational-cell-analytics/micro-sam/tree/master/examples/finetuning) for additional scripts that demonstrate finetuning.
151
151
- If you are not familiar with coding in python at all then you can also use the [graphical interface for finetuning](finetuning-ui). But we recommend using a script for more flexibility and reproducibility.
152
152
153
153
154
154
### 2. I would like to fine-tune Segment Anything on open-source cloud services (e.g. Kaggle Notebooks), is it possible?
155
-
Yes, you can fine-tune Segment Anything on your custom datasets on Kaggle (and [BAND](https://computational-cell-analytics.github.io/micro-sam/micro_sam.html#using-micro_sam-on-band)). Check out our [tutorial notebook](https://github.com/computational-cell-analytics/micro-sam/blob/master/notebooks/micro-sam-finetuning.ipynb) for this.
155
+
Yes, you can fine-tune Segment Anything on your custom datasets on Kaggle (and [BAND](https://computational-cell-analytics.github.io/micro-sam/micro_sam.html#using-micro_sam-on-band)). Check out our [tutorial notebook](https://github.com/computational-cell-analytics/micro-sam/blob/master/notebooks/sam_finetuning.ipynb) for this.
Copy file name to clipboardExpand all lines: doc/start_page.md
+7-2Lines changed: 7 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,12 +22,17 @@ If you run into any problems or have questions please [open an issue](https://gi
22
22
## Quickstart
23
23
24
24
You can install `micro_sam` via mamba:
25
-
```
25
+
```bash
26
26
$ mamba install -c conda-forge micro_sam
27
27
```
28
28
We also provide installers for Windows and Linux. For more details on the available installation options, check out [the installation section](#installation).
29
29
30
-
After installing `micro_sam` you can start napari and select the annotation tool you want to use from `Plugins -> SegmentAnything for Microscopy`. Check out the [quickstart tutorial video](https://youtu.be/gcv0fa84mCc) for a short introduction and [the annotation tool section](#annotation-tools) for details.
30
+
After installing `micro_sam`, you can start napari from within your environment using
31
+
32
+
```bash
33
+
$ napari
34
+
```
35
+
After starting napari, you can select the annotation tool you want to use from `Plugins -> SegmentAnything for Microscopy`. Check out the [quickstart tutorial video](https://youtu.be/gcv0fa84mCc) for a short introduction and [the annotation tool section](#annotation-tools) for details.
31
36
32
37
The `micro_sam` python library can be imported via
0 commit comments