1 #File clitkExtractBones.ggo
2 package "clitkExtractBones"
4 purpose "Extract bony anatomy through thresholding and connected component labelling. Resample mask afterwards (interp= NN) to match another one (like)"
6 option "config" - "Config file" string no
7 option "imagetypes" - "Display allowed image types" flag off
8 option "verbose" v "Verbose" flag off
9 option "verboseStep" - "Verbose each step" flag off
10 option "writeStep" w "Write image at each step" flag off
11 option "verboseOption" - "Display options values" flag off
12 option "verboseWarningOff" - "Do not display warning" flag off
16 option "input" i "Input image filename" string yes
17 option "output" o "Output image filename" string yes
18 option "like" l "Resample like this image" string no
20 section "Initial connected component labelling (CCL)"
22 option "lower1" - "Lower threshold for CCL" double no default="100"
23 option "upper1" - "Upper threshold for CCL" double no default="1500"
24 option "minSize" - "Minimal Component Size for CCL" int no default="100"
25 option "full" - "Use full connectivity (one side is enough)" flag off
27 section "Neighborhood Connected Region Growing (RG)"
29 option "lower2" - "Lower threshold for RG" double no default="10"
30 option "upper2" - "Upper threshold for RG" double no default="1500"
31 option "radius2" - "Neighborhood radius" int no multiple default="1"
32 option "sampleRate2" - "Sample rate of label image for RG: number of voxels to skip between seeds" int no default="0"
34 option "autoCrop" - "Crop final mask to BoundingBox" flag off