1 #File clitkWarpImage.ggo
2 package "clitkWarpImage"
4 purpose "Warp an image. Output will have the extent (origin+ spacing*size) of the input."
6 option "config" - "Config file" string no
7 option "verbose" v "Verbose" flag off
11 option "input" i "Input image filename" string yes
12 option "output" o "Output image filename" string yes
13 option "vf" - "Vector field filename" string yes
18 option "forward" f "Use forward warping (only linear interp)" flag off
19 option "spacing" s "The output spacing: 0=like the VF, 1= like the input image (interpolation of the VF prior to warp)" int no default="0"
20 option "pad" - "Edge padding value" float no default="0.0"
23 section "Interpolation: for image intensity and prior resampling of DVF"
25 option "interp" - "Interpolation: 0=NN, 1=Linear, 2=BSpline, 3=BLUT" int no default="1"
26 option "interpOrder" - "Order if BLUT or BSpline (0-5)" int no default="3"
27 option "interpSF" - "Sampling factor if BLUT" int no default="20"
28 option "interpVF" - "Interpolation: 0=NN, 1=Linear, 2=BSpline, 3=BLUT" int no default="1"
29 option "interpVFOrder" - "Order if BLUT or BSpline (0-5)" int no default="3"
30 option "interpVFSF" - "Sampling factor if BLUT" int no default="20"