]> Creatis software - clitk.git/blob - segmentation/clitkRegionGrowing.ggo
cosmetic for .ggo
[clitk.git] / segmentation / clitkRegionGrowing.ggo
1 #File clitkRegionGrowing.ggo
2 package "clitkRegionGrowing"
3 version "1.0"
4 purpose "Region growing from a seed point using various types of conditions to control the growing"
5
6 option "config"     - "Config file"                                                                                                                                         string  no
7 option "verbose"    v "Verbose"                                                                                                                                             flag    off
8
9 section "I/O"
10
11 option "input"      i "Input image filename"                                                                                                                                string  yes
12 option "output"     o "Output image filename"                                                                                                                               string  yes
13
14
15 section "Parameters"
16
17 option "type"       t "Region growing filter type: 0=threshold , 1=neighborhood-threshold , 2=confidence , 3=locally-adaptive-threshold, 4=explosion-controlled-threshold"  int     no  default="0"
18 option "lower"      l "Lower threshold value"                                                                                                                               double  no  default="310"
19 option "upper"      u "Upper threshold value"                                                                                                                               double  no  default="4000"
20 option "seed"       s "Seed index postion (in voxels)"                                                                                                                      int     no  default="0" multiple
21 option "seedRadius" - "Radius used for seed dilatation(in voxel)"                                                                                                           int     no  default="0" multiple
22 option "pad"        p "The replace padding value"                                                                                                                           double  no  default="1.0"
23 option "radius"     r "1-3: The radius of the neighborhood"                                                                                                                 int     no  default="1" multiple
24 option "iter"       - "2: Iterations"                                                                                                                                       int     no  default="5"
25 option "multiplier" m "2-4: (2-3) accept if within mean+-mutiplier*SD, (4) explosion if size increases multiplier times"                                                    double  no  default="2.0"
26 option "maxSD"      - "3: Limit to SD"                                                                                                                                      double  no
27 option "adaptLower" - "3,4: (locally) adapt lower thresholding"                                                                                                             flag    off
28 option "adaptUpper" - "3,4: (locally) adapt upper thresholding"                                                                                                             flag    off
29 option "maxUpper"   - "4: Maximum upper threshold value"                                                                                                                    double  no  default="2000"
30 option "minLower"   - "4: Minimum lower threshold value"                                                                                                                    double  no  default="-1000"
31 option "step"       - "4: Threshold step size"                                                                                                                              double  no  default="64.0"
32 option "minStep"    - "4: Minimum threshold step size"                                                                                                                      double  no  default="1"
33 option "full"       - "4: use full connectivity (not implemented yet)"                                                                                                      flag    off
34