
    AimsInterpolate
    ---------------

Spline interpolation of a volume.
Only implemented for single channel data types for now.

Options :

--input | -i <string>
    Input image.

[ --output | -o <string> ]
    Output image.

[ --output-coefficients <string> ]
    Output spline coefficients image.

[ --output-coefficients-old <string> ]
    Output spline coefficients image with old resampler.

[ --reference | -r <string> ]
    Reference image: its voxel size will be used.
    It is overriden by "--vs" options.

[ --order <U32> ]
    Interpolation order (default: 3).

[ --derivative <U32> ]
    Derivative (default: 0). 

[ --direction <vector of S32> ]
    Derivative direction. 

[ --type | -t <string> ]
    Output data type: (default: same as input)

[ --scalar <boolean> ]
    Get a scalar value in multi directional cases (der, der2...).
    - In der 1 case: compute the norm
    - In der 2 case: compute the determinant
    (default: true if no direction given)

[ --precision <string> ]
    - f[ast]: optimized spline equations. (very fast, default)
    - r[ecursive]: runtime recursive evaluation (very slow, precise)
    - t[abular]: precomputed splines values (fast, unprecise)
    By default, a fast mode using precomputed spline values is used. By
    enabling this option, exact spline computation is triggered.
    Be aware that only the recursive and tabular mode work with any spline and
    derivative order.

[ --dim-x | -dx <S64> ]
    Output X dimension. (default: same as input)

[ --dim-y | -dy <S64> ]
    Output Y dimension. (default: same as input)

[ --dim-z | -dz <S64> ]
    Output Z dimension. (default: same as input)

[ --vs-x | -sx <FLOAT> ]
    Output X voxel size. (default: same as input)

[ --vs-y | -sy <FLOAT> ]
    Output Y voxel size. (default: same as input)

[ --vs-z | -sz <FLOAT> ]
    Output Z voxel size. (default: same as input)

[ --output_4d_volumes <S32> ]
    Write 4D images as several 3D files (0 = series of 3D volumes, 1 = one 4D
    volume, no value = use .aimsrc configuration files)

[ --debugLevel | -d <S32> ]
    Set debug information level (default = 0)

[ --verbose | -v [ <S32> ] ]
    Set verbosity level (default = 0, without value = 1)

[ -h | --help <boolean> ]
    show help message

[ --version <boolean> ]
    show Cartograph version

[ --info <boolean> ]
    show libraries information (install, plugins, paths, etc.)

[ --optionsfile <string> ]
    Read additional commandline options from the specified file (one switch or
    value per line)

