Skip to content

Commit eb492d6

Browse files
committed
deploy: e00806c
1 parent 1af1d8a commit eb492d6

20 files changed

+132
-211
lines changed

.doctrees/environment.pickle

1 Byte
Binary file not shown.
-38.2 KB
Binary file not shown.
-266 Bytes
Binary file not shown.
84 Bytes
Binary file not shown.
3.65 KB
Binary file not shown.

.doctrees/res/welcome.doctree

4.11 KB
Binary file not shown.

_sources/res/code/model_instance_seg.rst.txt

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,29 @@
11
model_instance_seg.py
22
===========================================
33

4+
Classes
5+
-------------
6+
7+
InstanceMethod
8+
**************************************
9+
.. autoclass:: napari_cellseg3d.code_models.model_instance_seg::InstanceMethod
10+
:members: __init__
11+
12+
ConnectedComponents
13+
**************************************
14+
.. autoclass:: napari_cellseg3d.code_models.model_instance_seg::ConnectedComponents
15+
:members: __init__
16+
17+
Watershed
18+
**************************************
19+
.. autoclass:: napari_cellseg3d.code_models.model_instance_seg::Watershed
20+
:members: __init__
21+
22+
VoronoiOtsu
23+
**************************************
24+
.. autoclass:: napari_cellseg3d.code_models.model_instance_seg::VoronoiOtsu
25+
:members: __init__
26+
427

528
Functions
629
-------------

_sources/res/code/plugin_convert.rst.txt

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,6 @@ ToSemanticUtils
1919
.. autoclass:: napari_cellseg3d.code_plugins.plugin_convert::ToSemanticUtils
2020
:members: __init__
2121

22-
InstanceWidgets
23-
**********************************
24-
.. autoclass:: napari_cellseg3d.code_plugins.plugin_convert::InstanceWidgets
25-
:members: __init__, run_method
26-
2722
ToInstanceUtils
2823
**********************************
2924
.. autoclass:: napari_cellseg3d.code_plugins.plugin_convert::ToInstanceUtils

_sources/res/guides/cropping_module_guide.rst.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ If you'd like to change the size of the volume, change the parameters as previou
3333

3434
Creating new layers
3535
---------------------------------
36-
To "zoom in" your volume, you can use the "Create new layers" checkbox to make a new layer not controlled by the plugin next
37-
time you hit Start. This way, you can first select your region of interest by using the tool as described above,
38-
the enable the option, select the cropped layer, and define a smaller crop size to have easier access to your region of interest.
36+
To "zoom in" your volume, you can use the "Create new layers" checkbox to make a new cropping layer controlled by the sliders
37+
next time you hit Start. This way, you can first select your region of interest by using the tool as described above,
38+
then enable the option, select the cropped region produced before as the input layer, and define a smaller crop size in order to crop within your region of interest.
3939

4040
Interface & functionalities
4141
---------------------------------------------------------------

_sources/res/guides/utils_module_guide.rst.txt

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,21 @@ Label conversion utility guide
44
==================================
55

66
This utility will let you convert labels to various different formats.
7+
78
You will have to specify the results directory for saving; afterwards you can run each action on a folder or on the currently selected layer.
89

910
You can :
1011

12+
* Crop 3D volumes :
13+
Please refer to :ref:`cropping_module_guide` for a guide on using the cropping utility.
14+
1115
* Convert to instance labels :
12-
This will convert 0/1 semantic labels to instance label, with a unique ID for each object using the watershed method.
16+
This will convert 0/1 semantic labels to instance label, with a unique ID for each object.
17+
The available methods for this are :
1318

19+
* Connected components : simple method that will assign a unique ID to each connected component. Does not work well for touching objects (objects will often be fused), works for anisotropic volumes.
20+
* Watershed : method based on topographic maps. Works well for touching objects and anisotropic volumes; touching objects may be fused.
21+
* Voronoi-Otsu : method based on Voronoi diagrams. Works well for touching objects but only for isotropic volumes.
1422
* Convert to semantic labels :
1523
This will convert instance labels with unique IDs per object into 0/1 semantic labels, for example for training.
1624

0 commit comments

Comments
 (0)