You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: nipype/interfaces/cat12/preprocess.py
+4-5Lines changed: 4 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -627,7 +627,7 @@ class CAT12SANLMDenoisingInputSpec(SPMCommandInputSpec):
627
627
desc='Filename prefix. Specify the string to be prepended to the filenames of the filtered image file(s).',
628
628
)
629
629
630
-
filename_suffix=traits.Str(
630
+
filename_suffix=traits.Str(
631
631
field='suffix',
632
632
default_value='',
633
633
usedefault=True,
@@ -639,9 +639,8 @@ class CAT12SANLMDenoisingInputSpec(SPMCommandInputSpec):
639
639
field='addnoise',
640
640
desc='Strength of additional noise in noise-free regions. Add minimal amount of noise in regions without any noise to avoid image segmentation problems. This parameter defines the strength of additional noise as percentage of the average signal intensity.')
641
641
642
-
rician=traits.Enum(
643
-
0,
644
-
1,
642
+
rician=traits.Bool(
643
+
True,
645
644
field='rician',
646
645
usedefault=True,
647
646
desc='''Rician noise
@@ -651,7 +650,7 @@ class CAT12SANLMDenoisingInputSpec(SPMCommandInputSpec):
651
650
artefacts, e.g. cortex can be affected by very high values in the scalp or in blood vessels.''')
652
651
653
652
replaceNANandINF=traits.Bool(
654
-
True
653
+
True,
655
654
field='replaceNANandINF',
656
655
usedefault=True,
657
656
desc='Replace NAN by 0, -INF by the minimum and INF by the maximum of the image.'
0 commit comments