Skip to content

Commit b665c14

Browse files
committed
chore: no default branch and summary extraction
1 parent 9ac2b9d commit b665c14

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

vesskel/_napari.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,9 @@ def _extraction_params(
5454
extraction_gui = magicgui(
5555
_extraction_params,
5656
image={"label": "Input image"},
57-
extract_branches={"annotation": bool, "value": True},
58-
extract_branch_text={"annotation": bool, "value": True},
59-
extract_summary={"annotation": bool, "value": True},
57+
extract_branches={"annotation": bool, "value": False},
58+
extract_branch_text={"annotation": bool, "value": False},
59+
extract_summary={"annotation": bool, "value": False},
6060
include_fractal={"annotation": bool, "value": False},
6161
junction_cleanup={"annotation": bool, "value": False},
6262
cleanup_threshold_factor={

vesskel/config.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ def _warn_unknown_keys(known: set[str], data: dict[str, Any]) -> None:
2424
class ExtractionConfig:
2525
"""Configuration for what to extract from a skeleton."""
2626

27-
branches: bool = True
28-
branch_text: bool = True
29-
summary: bool = True
27+
branches: bool = False
28+
branch_text: bool = False
29+
summary: bool = False
3030
fractal_dimension: bool = False
3131
vessel_radius: bool = False
3232
junction_cleanup: bool = False

0 commit comments

Comments
 (0)