Skip to content

Commit d2d868e

Browse files
authored
Merge branch 'main' into doc-finish
2 parents e37ec1d + 6388ceb commit d2d868e

File tree

4 files changed

+11
-8
lines changed

4 files changed

+11
-8
lines changed

README.md

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -51,13 +51,16 @@ The process starts with a collection of ground truth graphs, each stored as an i
5151

5252
Lastly, we compute the following skeleton-based metrics:
5353

54-
- *\# Splits*: Number of connected components (minus 1) in a ground truth graph after removing omit nodes.
55-
- *\# Merges*: Number of ground truth graphs that contain at least one merge.
56-
- *Omit Edge Ratio*: Proportion of omitted edges.
57-
- *Split Edge Ratio*: Proportion of split edges.
58-
- *Merged Edge Ratio*: Proportion of merged edges.
59-
- *Edge Accuracy*: Proportion of edges that are correct.
60-
- *Expected Run Length (ERL)*: Expected run length of ground truth graph after removing omit nodes.
54+
- *\# Splits*: Number of connected components (minus 1) in a graph after removing omit and split edges.
55+
- *\# Merges*: Number of merge mistakes.
56+
- *\% Split Edges*: Percentage of split edges.
57+
- *\% Omit Edges*: Percentage of omit edges.
58+
- *\% Merged Edges*: Percentage of merged edges.
59+
- *Expected Run Length (ERL)*: Expected run length of graph after removing omit, split, and merged edges.
60+
- *Normalized ERL*: ERL normalized by the total run length of the graph.
61+
- *Edge Accuracy*: Percentage of edges that are correct.
62+
- *Split Rate*: Run length of the graph divided by number of splits.
63+
- *Merge Rate*: Run length of the graph divided by number of merges.
6164

6265
## Installation
6366
To use the software, in the root directory, run

imgs/printout.png

-64.3 KB
Binary file not shown.

imgs/printouts.png

-100 KB
Loading

src/segmentation_skeleton_metrics/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
Package to evaluate a predicted segmentation.
33
"""
44

5-
__version__ = "5.5.40"
5+
__version__ = "5.5.48"

0 commit comments

Comments
 (0)