]> Creatis software - clitk.git/blob - segmentation/clitkExtractBones.ggo
581392bc57db42572263cd2dff8bc99e53a5ba2e
[clitk.git] / segmentation / clitkExtractBones.ggo
1 #File clitkExtractBones.ggo
2 package "clitkExtractBones"
3 version "1.0"
4 purpose "Extract bony anatomy through thresholding and connected component labelling. Resample mask afterwards (interp= NN) to match another one (like)"
5
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
13
14 section "I/O"
15
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
19
20 section "Initial connected component labelling (CCL)"
21
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 
26
27 section "Neighborhood Connected Region Growing (RG)"
28
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" 
33
34 option "autoCrop"       -       "Crop final mask to BoundingBox"        flag    off