Skip to content

Commit 80bc570

Browse files
committed
Version bump + Wnet3d assumptions docs
1 parent 774e411 commit 80bc570

File tree

6 files changed

+17
-6
lines changed

6 files changed

+17
-6
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# CellSeg3D: self-supervised (and supervised) 3D cell segmentation, primarily for mesoSPIM data!
1+
# CellSeg3D: self-supervised (and supervised) 3D cell segmentation, primarily for mesoSPIM data!
22
[![napari hub](https://img.shields.io/endpoint?url=https://api.napari-hub.org/shields/napari-cellseg3d)](https://www.napari-hub.org/plugins/napari-cellseg3d)
33
[![PyPI](https://img.shields.io/pypi/v/napari-cellseg3d.svg?color=green)](https://pypi.org/project/napari-cellseg3d)
44
[![Downloads](https://static.pepy.tech/badge/napari-cellseg3d)](https://pepy.tech/project/napari-cellseg3d)
@@ -59,7 +59,7 @@ The strength of our approach is we can match supervised model performance with p
5959

6060
## News
6161

62-
**New version: v0.2.0**
62+
**New version: v0.2.0post1**
6363

6464
- Changed project name to "napari_cellseg3d" to avoid setuptools deprecation
6565
- Small API changes for training/inference from a script

docs/source/guides/inference_module_guide.rst

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,15 @@ Unsupervised model - WNet3D
151151
| The `WNet3D model` is a fully self-supervised model used to segment images without any labels.
152152
| It functions similarly to the above models, with a few notable differences.
153153
154+
WNet3D works best with :
155+
156+
* **MesoSPIM** data (whole-brain samples of mice imaged by mesoSPIM microscopy) with nuclei staining.
157+
* Other microscopy data with :
158+
* **Sufficient contrast** between objects and background.
159+
* **Low to medium crowding** of objects. If all objects are adjacent to each other, instance segmentation methods provided here may not work well.
160+
161+
Noise and object size are less critical, though objects still have to fit within the field of view of the model.
162+
154163
.. _WNet3D model: https://arxiv.org/abs/1711.08506
155164

156165
.. note::

docs/welcome.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Use CellSeg3D to:
1111
* Review labeled cell volumes from whole-brain samples of mice imaged by mesoSPIM microscopy [1]_
1212
* Train and use segmentation models from the MONAI project [2]_ or implement your own custom 3D segmentation models using PyTorch.
1313

14-
No labeled data? Try our unsupervised model, based on the `WNet`_ model, to automate your data labelling.
14+
No labeled data? Try our unsupervised model **WNet3D**, based on the `WNet`_ model, to automate your data labelling.
1515

1616
The models provided should be adaptable to other tasks related to detection of 3D objects,
1717
outside of whole-brain light-sheet microscopy.

napari_cellseg3d/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
"""napari-cellseg3d - napari plugin for cell segmentation."""
2-
__version__ = "0.2.0"
2+
3+
__version__ = "0.2.0post1"

napari_cellseg3d/code_plugins/plugin_helper.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Tiny plugin showing link to documentation and about page."""
2+
23
import pathlib
34
from typing import TYPE_CHECKING
45

@@ -43,7 +44,7 @@ def __init__(self, viewer: "napari.viewer.Viewer"):
4344
self.logo_label.setToolTip("Open Github page")
4445

4546
self.info_label = ui.make_label(
46-
f"You are using napari-cellseg3d v.{'0.2.0'}\n\n"
47+
f"You are using napari-cellseg3d v.{'0.2.0post1'}\n\n"
4748
f"Plugin for cell segmentation developed\n"
4849
f"by the Mathis Lab of Adaptive Motor Control\n\n"
4950
f"Code by :\nCyril Achard\nMaxime Vidal\nJessy Lauer\nMackenzie Mathis\n"

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = napari_cellseg3d
3-
version = 0.2.0
3+
version = 0.2.0post1
44

55
[options]
66
packages = find:

0 commit comments

Comments
 (0)