File tree Expand file tree Collapse file tree 1 file changed +10
-6
lines changed Expand file tree Collapse file tree 1 file changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -266,10 +266,15 @@ class N4BiasFieldCorrectionInputSpec(ANTSCommandInputSpec):
266
266
input_image = File (
267
267
argstr = '--input-image %s' ,
268
268
mandatory = True ,
269
- desc = ('image to apply transformation to (generally a '
270
- 'coregistered functional)' ))
271
- mask_image = File (argstr = '--mask-image %s' )
272
- weight_image = File (argstr = '--weight-image %s' )
269
+ desc = ('input for bias correction. Negative values or values close to '
270
+ 'zero should be processed prior to correction' ))
271
+ mask_image = File (
272
+ argstr = '--mask-image %s' ,
273
+ desc = ('image to specify region to perform final bias correction in' ))
274
+ weight_image = File (
275
+ argstr = '--weight-image %s' ,
276
+ desc = ('image for relative weighting (e.g. probability map of the white '
277
+ 'matter) of voxels during the B-spline fitting. ' ))
273
278
output_image = traits .Str (
274
279
argstr = '--output %s' ,
275
280
desc = 'output file name' ,
@@ -284,8 +289,7 @@ class N4BiasFieldCorrectionInputSpec(ANTSCommandInputSpec):
284
289
False ,
285
290
mandatory = True ,
286
291
usedefault = True ,
287
- desc = ('True if the estimated bias should be saved'
288
- ' to file.' ),
292
+ desc = ('True if the estimated bias should be saved to file.' ),
289
293
xor = ['bias_image' ])
290
294
bias_image = File (
291
295
desc = 'Filename for the estimated bias.' , hash_files = False )
You can’t perform that action at this time.
0 commit comments