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
- A napari plugin for 3D cell segmentation: training, inference, and data review. In particular, this project was developed for analysis of mesoSPIM-acquired (cleared tissue + lightsheet) datasets.
@@ -20,7 +20,7 @@
20
20
21
21
## Documentation
22
22
23
-
📚 A lot of documentation is available at https://AdaptiveMotorControlLab.github.io/CellSeg3d
23
+
📚 A lot of documentation is available at https://AdaptiveMotorControlLab.github.io/CellSeg3D
24
24
25
25
You can also generate docs by running ``make html`` in the docs/ folder.
26
26
@@ -62,39 +62,48 @@ Previous additions :
62
62
63
63
64
64
65
-
### Install note for M1/M2 Mac users
65
+
### Install note for ARM64 (Silicon) Mac users
66
66
67
67
To avoid issues when installing on the ARM64 architecture, please follow these steps.
68
68
69
-
1) Create a new conda env using the provided conda/napari_cellseg3d_m1.yml file :
69
+
1) Create a new conda env using the provided conda/napari_CellSeg3D_ARM64.yml file :
3) Launch napari, the plugin should be available in the plugins menu.
81
79
82
-
pip install napari-cellseg3d
83
-
84
-
OR directly via [napari-hub] (see Installation section above)
85
80
86
81
87
82
## Requirements
88
83
89
84
**Python 3.8 or 3.9 required.**
90
85
Requires **[napari]**, **[PyTorch]** and **[MONAI]**.
86
+
Compatible with Windows, MacOS and Linux.
87
+
Installation should not take more than 30 minutes, depending on your internet connection.
91
88
92
89
For PyTorch, please see [the PyTorch website for installation instructions].
93
90
94
91
A CUDA-capable GPU is not needed but very strongly recommended, especially for training.
95
92
96
93
If you get errors from MONAI regarding missing readers, please see [MONAI's optional dependencies] page for instructions on getting the readers required by your images.
97
94
95
+
## Quick demo
96
+
97
+
After installation, you can run the plugin by running:
98
+
99
+
napari
100
+
101
+
and launching the plugin from the Plugins menu.
102
+
You may use the test volume in the `examples` folder to test the inference and review tools.
103
+
This should run in far less than five minutes on a modern computer.
104
+
105
+
You may also find a demo Colab notebook in the `notebooks` folder.
106
+
98
107
## Issues
99
108
100
109
**Help us make the code better by reporting issues and adding your feature requests!**
@@ -134,7 +143,7 @@ Distributed under the terms of the [MIT] license.
Copy file name to clipboardExpand all lines: docs/source/guides/custom_model_template.rst
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -31,4 +31,4 @@ To add a custom model, you will need a **.py** file with the following structure
31
31
.. note::
32
32
**WIP** : Currently you must modify :doc:`model_framework.py <../code/_autosummary/napari_cellseg3d.code_models.model_framework>` as well : import your model class and add it to the ``model_dict`` attribute
33
33
34
-
.. _file an issue: https://github.com/AdaptiveMotorControlLab/CellSeg3d/issues
34
+
.. _file an issue: https://github.com/AdaptiveMotorControlLab/CellSeg3D/issues
Copy file name to clipboardExpand all lines: docs/source/guides/detailed_walkthrough.rst
+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
@@ -32,6 +32,11 @@ For quick model checks, check the "Inference" sections in our docs.
32
32
If you need to start labeling volumes from scratch or correct initial labels, we recommend consulting the sections on :ref:`Review<walkthrough_reviewing>` section right after :ref:`Cropping <walkthrough_cropping>`.
33
33
34
34
35
+
Launching the plugin
36
+
************************
37
+
38
+
See `Usage section <https://adaptivemotorcontrollab.github.io/CellSeg3D/welcome.html#usage>`_ for instructions on launching the plugin.
39
+
35
40
Cropping
36
41
*********
37
42
.. _walkthrough_cropping:
@@ -202,7 +207,7 @@ To visualise some of the results when running on a folder, you can leave the **V
202
207
.. note::
203
208
Too plot your results, check out the `provided notebooks`_
0 commit comments