Skip to content

Commit c64f118

Browse files
committed
v0.0.1rc1
1 parent b89a54b commit c64f118

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@ A napari plugin for 3D cell segmentation: training, inference, and data review.
1717

1818
## News
1919

20-
**June 2022: This is an alpha version, please expect bugs and issues, and help us make the code better by reporting them as an issue!**
20+
**June 2022: This is an alpha version, please expect bugs and issues, and help us make the code better by reporting them as an issue!**
2121

2222

2323

2424
## Installation
2525

26-
You can install `napari-cellseg3d` via [pip] (pypi-test placeholder):
26+
You can install `napari-cellseg3d` via [pip]:
2727

28-
pip install --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple/ napari-cellseg3d==0.0.3
28+
pip install napari-cellseg3d
2929

3030
## Documentation
3131

@@ -44,7 +44,7 @@ Then go into Plugins > napari-cellseg3d, and choose which tool to use.
4444
- **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.
4545
- **Inference**: This module allows you to use pre-trained segmentation algorithms on volumes to automatically label cells and compute statistics.
4646
- **Train**: This module allows you to train segmentation algorithms from labeled volumes.
47-
- **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.
47+
- **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.
4848

4949

5050
## Requirements
@@ -61,17 +61,17 @@ If you get errors from MONAI regarding missing readers, please see [MONAI's opti
6161
If you encounter any problems, please [file an issue] along with a detailed description.
6262

6363

64-
## Testing
64+
## Testing
6565

66-
To run tests locally:
66+
To run tests locally:
6767

6868
- Locally : run ``pytest`` in the plugin folder
6969
- Locally with coverage : In the plugin folder, run ``coverage run --source=src -m pytest`` then ``coverage.xml`` to generate a .xml coverage file.
7070
- With tox : run ``tox`` in the plugin folder (will simulate tests with several python and OS configs, requires substantial storage space)
7171

7272
## Contributing
7373

74-
Contributions are very welcome.
74+
Contributions are very welcome.
7575

7676
Please ensure the coverage at least stays the same before you submit a pull request.
7777

@@ -108,7 +108,7 @@ Distributed under the terms of the [MIT] license.
108108
[PyTorch's website for installation instructions]: https://pytorch.org/get-started/locally/
109109
[MONAI's optional dependencies]: https://docs.monai.io/en/stable/installation.html#installing-the-recommended-dependencies
110110

111-
## Acknowledgements
111+
## Acknowledgements
112112

113113
This plugin was developed by Cyril Achard, Maxime Vidal, Mackenzie Mathis. This work was funded, in part, from the Wyss Center to the [Mathis Laboratory of Adaptive Motor Control](https://www.mackenziemathislab.org/).
114114

napari_cellseg3d/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.0.3"
1+
__version__ = "0.0.1rc1"

napari_cellseg3d/plugin_helper.py

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

4343
self.info_label = ui.make_label(
44-
f"You are using napari-cellseg3d v.{'0.0.3'}\n\n"
44+
f"You are using napari-cellseg3d v.{'0.0.1rc1'}\n\n"
4545
f"Plugin for cell segmentation developed\n"
4646
f"by the Mathis Lab of Adaptive Motor Control\n\n"
4747
f"Code by Cyril Achard and Maxime Vidal and Mackenzie 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.0.3
3+
version = 0.0.1rc1
44
author = Cyril Achard, Maxime Vidal, Mackenzie Mathis
55
66

0 commit comments

Comments
 (0)