Skip to content

Commit

Permalink
DOC: fix last input description for api doc of super-resolution inter…
Browse files Browse the repository at this point in the history
…face
  • Loading branch information
sebastientourbier committed Dec 15, 2020
1 parent b6a6da9 commit 5870837
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions pymialsrtk/interfaces/reconstruction.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,13 +156,15 @@ class MialsrtkTVSuperResolutionInputSpec(BaseInterfaceInputSpec):
"""Class used to represent inputs of the MialsrtkTVSuperResolution interface."""

bids_dir = Directory(desc='BIDS root directory', mandatory=True, exists=True)
input_images = InputMultiPath(File(desc='Input image filenames for super-resolution', mandatory=True))
input_masks = InputMultiPath(File(desc='Masks of input images for super-resolution', mandatory=True))
input_images = InputMultiPath(File(mandatory=True),
desc='Input image filenames for super-resolution')
input_masks = InputMultiPath(File(mandatory=True),
desc='Masks of input images for super-resolution')
input_transforms = InputMultiPath(File(mandatory=True),
desc='Estimated slice-by-slice ITK transforms of input images')
input_sdi = File(File(desc='Reconstructed image for initialization. '
'Typically the output of MialsrtkImageReconstruction is used',
mandatory=True))
input_sdi = File(desc='Reconstructed image for initialization. '
'Typically the output of MialsrtkImageReconstruction is used',
mandatory=True)
deblurring = traits.Bool(False,
desc='Flag to set deblurring PSF during SR (double the neighborhood)',
usedefault=True)
Expand Down

0 comments on commit 5870837

Please sign in to comment.