Skip to content

Commit f2f9a0f

Browse files
authored
v0.2.0 (#73)
* Update README.md * Update README for v0.1.3 * Version bump * Version bump : 0.2.0
1 parent 31db751 commit f2f9a0f

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
lines changed

README.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,16 +35,19 @@ Then go into Plugins > napari-cellseg3d, and choose which tool to use.
3535
- **Review (label)**: 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.
3636
- **Inference**: This module allows you to use pre-trained segmentation algorithms on volumes to automatically label cells and compute statistics.
3737
- **Train**: This module allows you to train segmentation algorithms from labeled volumes.
38-
- **Utilities**: This module allows you to perform several actions like cropping your volumes and labels dynamically, by selecting a fixed size volume and moving it around the image; computing prediction scores from ground truth and predicition labels; or converting labels from instance to segmentation and the opposite.
38+
- **Utilities**: This module allows you to perform several actions like cropping your volumes and labels dynamically, by selecting a fixed size volume and moving it around the image; fragment images into smaller cubes for training; or converting labels from instance to segmentation and the opposite.
3939

4040
## News
4141

42-
**New version : v0.1.2**
42+
**New version : v0.2.0**
4343

44-
- Fixed manifest issue for PyPi
44+
- Changed project name to "napari_cellseg3d" to avoid setuptools deprecation
45+
- Small API changes for training/inference from a script
46+
- Some fixes to WandB integration ad csv saving after training
4547

4648
Previous additions :
4749

50+
- v0.1.2 :Fixed manifest issue for PyPi
4851
- Improved training interface
4952
- Unsupervised model : WNet3D
5053
- Generate labels directly from raw data!

napari_cellseg3d/__init__.py

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

napari_cellseg3d/code_plugins/plugin_helper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def __init__(self, viewer: "napari.viewer.Viewer"):
4343
self.logo_label.setToolTip("Open Github page")
4444

4545
self.info_label = ui.make_label(
46-
f"You are using napari-cellseg3d v.{'0.1.2'}\n\n"
46+
f"You are using napari-cellseg3d v.{'0.2.0'}\n\n"
4747
f"Plugin for cell segmentation developed\n"
4848
f"by the Mathis Lab of Adaptive Motor Control\n\n"
4949
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.1.2
3+
version = 0.2.0
44

55
[options]
66
packages = find:

0 commit comments

Comments
 (0)