Python package for evaluating neuron segmentations in terms of the number of splits and merges
Project description
SkeletonMetrics
Python package that evaluates the topological accuracy of a predicted neuron segmentation by comparing it to a set of ground truth skeletons (i.e. graphs). Topological errors (e.g. splits and merges) are detected by examining skeleton edges and checking if the corresponding nodes belong to the same object in the segmentation. Once the accuracy of each edge has been determined, several skeleton-based metrics are computed to quantify the topological accuracy.
Note: This repository is an implementation of the skeleton-based metrics described in High-Precision Automated Reconstruction of Neurons with Flood-filling Networks
Overview
The pipeline for computing skeleton metrics consists of three main steps:
1. Label Graphs: Nodes in ground truth graphs are labeled with segmentation IDs.
2. Error Detection: Compare labels of neighboring nodes to detect mistakes.
3. Compute Metrics: Update graph structure by removing omit nodes and compute skeleton-based metrics.
Figure: Visualization of skeleton metric computation pipeline, see Method section for description of each step.
Method
Step 1: Label Graphs
The process starts with a collection of ground truth graphs, each stored as an individual SWC file, where the "xyz" attribute represents voxel coordinates in an image. Each ground truth graph is loaded and represented as a custom NetworkX graph with these coordinates as a node-level attribute. The nodes of each graph are then labeled with their corresponding segment IDs from the predicted segmentation.
Figure: On the left, ground truth graphs are superimposed on a segmentation where colors represent segment IDs. On the right, the nodes of the graphs have been labeled with the corresponding segment IDs.
Step 2: Error Detection
Figure: From top to bottom: correct edge (nodes have same segment ID), omit edge (at least one node does not have a segment ID), split edge (nodes have different segment IDs), merged edge (segment intersects with multiple graphs).
Step 3: Compute Metrics
Lastly, we compute the following skeleton-based metrics:
- # Splits: Number of connected components (minus 1) in a graph after removing omit and split edges.
- # Merges: Number of merge mistakes.
- % Split Edges: Percentage of split edges.
- % Omit Edges: Percentage of omit edges.
- % Merged Edges: Percentage of merged edges.
- Expected Run Length (ERL): Expected run length of graph after removing omit, split, and merged edges.
- Normalized ERL: ERL normalized by the total run length of the graph.
- Edge Accuracy: Percentage of edges that are correct.
- Split Rate: Run length of the graph divided by number of splits.
- Merge Rate: Run length of the graph divided by number of merges.
Installation
To use the software, in the root directory, run
pip install -e .
Usage
Here is a simple example of evaluating a predicted segmentation.
from segmentation_skeleton_metrics.evaluate import evaluate
from segmentation_skeleton_metrics.utils.img_util import TiffReader
# Initializations
output_dir = "./"
segmentation_path = "path-to-predicted-segmentation"
fragments_pointer = "path-to-predicted-skeletons"
groundtruth_pointer = "path-to-groundtruth-skeletons"
# Run
segmentation = TiffReader(segmentation_path)
evaluate(
groundtruth_pointer,
segmentation,
output_dir,
fragments_pointer=fragments_pointer,
)
Figure: Example of printouts generated after running evaluation.
Note: this package can also be used to evaluate a segmentation in which split mistakes have been corrected.
Contact Information
For any inquiries, feedback, or contributions, please do not hesitate to contact us. You can reach us via email at anna.grim@alleninstitute.org or connect on LinkedIn.
License
segmentation-skeleton-metrics is licensed under the MIT License.
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file segmentation_skeleton_metrics-5.6.21.tar.gz.
File metadata
- Download URL: segmentation_skeleton_metrics-5.6.21.tar.gz
- Upload date:
- Size: 727.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3dad6533ad1e961dbd8d6ad84a36a1c6a57b209f80cd03315328749e69ac2338
|
|
| MD5 |
d8e8c7da8a8bf9e6304a24cc55ec3e9a
|
|
| BLAKE2b-256 |
11889bc28e848af143e00c306c1103557aa5b81109c8dbf4a2f3cc32d3a5f261
|
File details
Details for the file segmentation_skeleton_metrics-5.6.21-py3-none-any.whl.
File metadata
- Download URL: segmentation_skeleton_metrics-5.6.21-py3-none-any.whl
- Upload date:
- Size: 34.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ab22724219547f66473810bf360ecf5d4d4075afff69113ee618e82d3f82cb3e
|
|
| MD5 |
3304d131930503c6ef1e082d001b3c84
|
|
| BLAKE2b-256 |
98feb15e210e942670a4117db47aaecad2558d6ea85071ff5ee2ccf376931ef3
|