This plugin is based on the LabelProp project. See also the napari-labelprop-remote plugin for remote computing.
See "Semi-automatic muscle segmentation in MR images using deep registration-based label propagation" paper :
To install this project :
pip install napari['all']
pip install git+https://github.com/nathandecaux/napari-labelprop.git
In fresh Ubuntu 22.04 installs, it might require :
sudo apt install python3-pyqt5*
Download pretrained weights.
Open napari from terminal and start using functions from 'napari-labelprop' plugin (Under Plugins scrolling menu).
Available functions are :
- Inference : Propagate labels from trained weights (Pytorch checkpoint required)
- Training : Start training from scratch or from the pretrained weights.
PS : "Unsupervised pretraining" is not yet implemented. See CLI option at LabelProp repository.
Every operation is done in the main thread. So, napari is not responsive during training or inference, but you can still follow the progress in the terminal.
To train a model, reach the plugin in the menu bar :
Plugins > napari-labelprop > Training
Fill the fields with the following information :
Image
: Select a loaded napari.layers.Image layer to segmentLabels
: Select a loaded napari.layers.Labels layer with the initial labelshints
: Select a loaded napari.layers.Labels layer with scribbled pseudo labelsPretrained checkpoint
: Select a pretrained checkpoint from the server-side checkpoint directorySlices shape
: Slices are resample to this shape for training and inference, then resampled to original shape. So far, slices must be squares.Propagation axis
: Set the axis to use for the propagation dimensionMax epochs
: Set the maximum number of epochs to train the modelCheckpoint output directory
Checkpoint name
Weighting criteria
: Defines the criteria used to weight each direction of propagationncc = normalized cross correlation (slow but smooth), distance = distance to the nearest label (fast but less accurate)
Reduction
: When using ncc, defines the reduction to apply to the ncc mapmean / local_mean / none
. Default isnone
Use GPU
: Set if whether to use the GPU or not. Default isTrue
(GPU). GPU:0 is used by default. To use another GPU, set theCUDA_VISIBLE_DEVICES
environment variable before launching napari.
To run inference on a model, reach the plugin in the menu bar :
Plugins > napari-labelprop-remote > Inference
Fill the fields like in the training section. Then, click on the Run
button.
Contributions are very welcome. Tests can be run with tox, please ensure the coverage at least stays the same before you submit a pull request.
Distributed under the terms of the BSD-3 license, "napari-labelprop" is free and open source software
If you encounter any problems, please [file an issue] along with a detailed description.