We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 18ec6d3 commit 07f63ceCopy full SHA for 07f63ce
nipype/interfaces/ants/resampling.py
@@ -208,9 +208,16 @@ def _list_outputs(self):
208
209
210
class ApplyTransformsInputSpec(ANTSCommandInputSpec):
211
- dimension = traits.Enum(
212
- 3, 2, argstr='--dimensionality %d', usedefault=True,
213
- desc='image dimension (2 or 3)')
+ dimension = traits.Enum(2, 3, 4, argstr='--dimensionality %d',
+ desc=('This option forces the image to be treated '
+ 'as a specified-dimensional image. If not '
214
+ 'specified, antsWarp tries to infer the '
215
+ 'dimensionality from the input image.'))
216
+ input_image_type = traits.Enum(0, 1, 2, 3,
217
+ argstr='--input-image-type %d',
218
+ desc=('Option specifying the input image '
219
+ 'type of scalar (default), vector, '
220
+ 'tensor, or time series.'))
221
input_image = File(argstr='--input %s', mandatory=True,
222
desc=('image to apply transformation to (generally a '
223
'coregistered functional)'),
0 commit comments