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: docs/res/guides/inference_module_guide.rst
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -44,7 +44,9 @@ Interface and functionalities
44
44
* Thresholding : You can perform thresholding to binarize your labels, all values beneath the confidence threshold will be set to 0 using this.
45
45
If you wish to use instance segmentation it is recommended to use threshlding.
46
46
47
-
47
+
* Instance segmentatin : You can convert the semantic segmentation into instance labels by using either the watershed or connected components method.
48
+
You can set the probability threshhold from which a pixel is considered as a valid instance, as well as the minimum size in pixels for objects. All smaller objects will be removed.
49
+
Instance labels will be saved (and shown if applicable) separately from other results.
48
50
49
51
* Viewing results : You can also select whether you'd like to see the results in napari afterwards; by default the first image processed will be displayed,
50
52
but you can choose to display up to ten at once. You can also request to see the originals.
* Advanced : Defining custom models directly in the plugin (WIP) : :ref:`custom_model_guide`
17
+
* Main modules :
18
+
* Review : :ref:`loader_module_guide`
19
+
* Inference: :ref:`inference_module_guide`
20
+
* Training : :ref:`training_module_guide`
21
+
* Utilities :
22
+
* Cropping (3D) : :ref:`cropping_module_guide`
23
+
* Convert labels : :ref:`convert_module_guide`
24
+
* Compute scores : :ref:`metrics_module_guide`
25
+
* Advanced :
26
+
* Defining custom models directly in the plugin (WIP) : :ref:`custom_model_guide`
24
27
25
28
26
29
Requirements
@@ -63,10 +66,34 @@ Then go into Plugins > napari-cellseg-3d, and choose which tool to use.
63
66
- **Review**: This module allows you to review your labels, from predictions or manual labeling, and correct them if needed. It then saves the status of each file in a csv, for easier monitoring.
64
67
- **Infer**: This module allows you to use pre-trained segmentation algorithms on volumes to automatically label cells.
65
68
- **Train**: This module allows you to train segmentation algorithms from labeled volumes.
66
-
- **Crop utility**: This module allows you to crop your volumes and labels dynamically, by selecting a fixed size volume and moving it around the image.
69
+
- **Utilities**: This module allows you to use several utilities, e.g. to crop your volumes and labels, compute prediction scores or convert labels
67
70
68
71
72
+
Credits & acknowledgments
73
+
---------------------------------------------
74
+
This plugin has been developed by Cyril Achard and Maxime Vidal for the `Mathis Laboratory of Adaptive Motor Control`_.
69
75
76
+
The TRAILMAP models and original weights used here all originate from the `TRAILMAP project on GitHub`_
77
+
78
+
**Mapping Mesoscale Axonal Projections in the Mouse Brain Using A 3D Convolutional Network**
79
+
*Drew Friedmann, Albert Pun, Eliza L Adams, Jan H Lui, Justus M Kebschull, Sophie M Grutzner, Caitlin Castagnola, Marc Tessier-Lavigne, Liqun Luo*
0 commit comments