Skip to content

Commit

Permalink
Merge branch 'main' into feat-merge-detection-corrected
Browse files Browse the repository at this point in the history
  • Loading branch information
anna-grim authored Aug 29, 2024
2 parents 2f7fc39 + cddb6c7 commit bcdddd1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/segmentation_skeleton_metrics/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
Package to evaluate a predicted segmentation.
"""

__version__ = "4.5.5"
__version__ = "4.6.0"
4 changes: 4 additions & 0 deletions src/segmentation_skeleton_metrics/swc_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,9 @@ def __init__(
Image to world scaling factors applied to xyz coordinates to
account for anisotropy of the microscope. The default is
[1.0, 1.0, 1.0].
img_coords_bool : bool, optional
Indication of whether node xyz coordinates coorespond to voxels or
world. The default is True.
min_size : int, optional
Threshold on the number of nodes in swc file. Only swc files with
more than "min_size" nodes are stored in "xyz_coords". The default
Expand All @@ -62,6 +65,7 @@ def __init__(
"""
self.anisotropy = anisotropy
self.img_coords_bool = img_coords_bool
self.min_size = min_size
self.return_graphs = return_graphs

Expand Down

0 comments on commit bcdddd1

Please sign in to comment.