File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -48,6 +48,7 @@ CLI outputs:
4848- Optional per-image skeleton outputs (default: ` .npy ` )
4949- Optional per-image branch tables when ` output.write_branch_csv=true `
5050- Optional per-image node tables when ` output.write_node_csv=true `
51+ - Optional per-image skeleton graphs when ` output.write_graphml=true `
5152
5253## Configuration
5354
@@ -77,7 +78,8 @@ Extraction and output settings are defined in a JSON config file (e.g. the one e
7778 "write_summary_csv" : true ,
7879 "write_branch_csv" : false ,
7980 "write_node_csv" : false ,
80- "write_radius" : false
81+ "write_radius" : false ,
82+ "write_graphml" : false
8183 }
8284}
8385```
@@ -103,6 +105,7 @@ Extraction and output settings are defined in a JSON config file (e.g. the one e
103105| ` output.write_branch_csv ` | bool | ` false ` | Write per-branch CSV tables (requires ` extraction.branches ` ) |
104106| ` output.write_node_csv ` | bool | ` false ` | Write per-node CSV tables (requires ` extraction.nodes ` ) |
105107| ` output.write_radius ` | bool | ` false ` | Write per-pixel radius matrix as ` .npy ` (requires ` extraction.vessel_radius ` ) |
108+ | ` output.write_graphml ` | bool | ` false ` | Write skeleton graph as ` .graphml ` per image (nodes = graph nodes, edges = branches) |
106109
107110### Shell completions
108111
You can’t perform that action at this time.
0 commit comments