metrics for evaluating lesion segmentations
Project description
lesion-metrics
Various metrics for evaluating lesion segmentations [1]
Free software: Apache Software License 2.0
Documentation: https://lesion-metrics.readthedocs.io.
Install
The easiest way to install the package is with:
pip install lesion-metrics
To install the dependencies of the CLI, install with:
pip install "lesion-metrics[cli]"
You can also download the source and run:
python setup.py install
Basic Usage
You can generate a report of lesion metrics for a directory of predicted labels and truth labels with the CLI:
lesion-metrics -p predictions/ -t truth/ -o output.csv
Or you can import the metrics and run them on label images:
import nibabel as nib
from lesion_metrics.metrics import dice
pred = nib.load('pred_label.nii.gz').get_fdata()
truth = nib.load('truth_label.nii.gz').get_fdata()
dice_score = dice(pred, truth)
References
[1] Carass, Aaron, et al. “Longitudinal multiple sclerosis lesion segmentation: resource and challenge.” NeuroImage 148 (2017): 77-102.
History
0.1.2 (2021-05-26)
Update code style to black and improve docs.
0.1.1 (2021-05-14)
Fix repo name.
0.1.0 (2021-05-14)
First release on PyPI.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for lesion_metrics-0.1.3-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | c4377bf25186d4ad1d5849b89b3e82fd37196ff6cff6e80fba7587d553fd1645 |
|
MD5 | e2a4763030a097309342b4d12775d555 |
|
BLAKE2b-256 | 65eefc06ba5ff7af66397d7dc83a9c43b2643a2a310a02a7180383fc0d3eef9b |