1 #File clitkImageResample.ggo
2 package "clitkImageResample"
4 purpose "Resample an image. You can specify the interpolation, you can apply a Gaussian filter before."
6 option "config" - "Config file" string no
7 option "input" i "Input image filename" string yes
8 option "output" o "Output image filename" string yes
9 option "verbose" v "Verbose" flag off
10 option "interp" - "Interpolation type: {nn, linear, bspline, blut}" string no default="nn"
11 option "order" b "BSpline ordre (range 0-5)" int no default="3"
12 option "sampling" s "BLUT sampling value" int no default="30"
13 option "size" - "Number of pixels of each coordonate" int no multiple default="0"
14 option "spacing" - "Spacing in mm between pixels" float no multiple default="0.0"
15 option "gauss" g "Apply Gaussian before (sigma in mm) ; no Gaussian if not given" float no multiple default="1.0"
16 option "default" d "Default pixel value" float no default = "0.0"