File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -53,7 +53,6 @@ Next release
53
53
* ENH: Added csvReader() utility (https://github.com/nipy/nipype/pull/1044)
54
54
* FIX: typo in nipype.interfaces.freesurfer.utils.py Tkregister2 (https://github.com/nipy/nipype/pull/1083)
55
55
* FIX: SSHDataGrabber outputs now return full path to the grabbed/downloaded files. (https://github.com/nipy/nipype/pull/1086)
56
- * FIX: N4BiasFieldCorrection dimension input now uses short tag for compatibility. (https://github.com/nipy/nipype/pull/1096)
57
56
58
57
Release 0.10.0 (October 10, 2014)
59
58
============
Original file line number Diff line number Diff line change @@ -279,23 +279,23 @@ class N4BiasFieldCorrection(ANTSCommand):
279
279
>>> n4.inputs.convergence_threshold = 1e-6
280
280
>>> n4.cmdline
281
281
'N4BiasFieldCorrection --bspline-fitting [ 300 ] \
282
- -d 3 --input-image structural.nii \
282
+ --image-dimension 3 --input-image structural.nii \
283
283
--convergence [ 50x50x30x20, 1e-06 ] --output structural_corrected.nii \
284
284
--shrink-factor 3'
285
285
286
286
>>> n4_2 = copy.deepcopy(n4)
287
287
>>> n4_2.inputs.bspline_order = 5
288
288
>>> n4_2.cmdline
289
289
'N4BiasFieldCorrection --bspline-fitting [ 300, 5 ] \
290
- --d 3 --input-image structural.nii \
290
+ --image-dimension 3 --input-image structural.nii \
291
291
--convergence [ 50x50x30x20, 1e-06 ] --output structural_corrected.nii \
292
292
--shrink-factor 3'
293
293
294
294
>>> n4_3 = N4BiasFieldCorrection()
295
295
>>> n4_3.inputs.input_image = 'structural.nii'
296
296
>>> n4_3.inputs.save_bias = True
297
297
>>> n4_3.cmdline
298
- 'N4BiasFieldCorrection -d 3 --input-image structural.nii \
298
+ 'N4BiasFieldCorrection --image-dimension 3 --input-image structural.nii \
299
299
--output [ structural_corrected.nii, structural_bias.nii ]'
300
300
"""
301
301
You can’t perform that action at this time.
0 commit comments