-
Notifications
You must be signed in to change notification settings - Fork 0
/
README.txt
executable file
·34 lines (23 loc) · 939 Bytes
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# Skeleton curator for napari
This pakage provides tooling intended to inspect and curate image skeletons in napari.
Additionally, slicing and exporting of images along edges is supported.
Tooling includes:
- inspect skeleton
- inspect subgraphs
- compare with original image
- remove nodes
- remove edges
- measure length of edges
- measure angles between edges
- quantify lobe dimensions
- export image along edges
In principle it is extandable to any networkx compatible graph structure.
## Installation
It is recommended to install this package in a virtual environment.
conda create -n napari-skeleton-curator python=3.9.9
conda activate napari-skeleton-curator
You can install `napari-skeleton-curator` via [pip]:
pip install napari-skeleton-curator
## Usage
`code/skeleton.py` contains the functionallity
`examples/skeleton_merge_nodes.ipynb` is a notebook that demonstrates the data type and workflow.