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
+7-6Lines changed: 7 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -634,10 +634,11 @@ class CAT12SANLMDenoisingInputSpec(SPMCommandInputSpec):
634
634
desc='Filename suffix. Specify the string to be appended to the filenames of the filtered image file(s).'
635
635
)
636
636
637
-
addnoise=traits.Float(default_value=0.5,
638
-
usedefault=True,
639
-
field='addnoise',
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.')
637
+
addnoise=traits.Float(
638
+
default_value=0.5,
639
+
usedefault=True,
640
+
field='addnoise',
641
+
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
642
642
643
rician=traits.Bool(
643
644
True,
@@ -649,14 +650,14 @@ class CAT12SANLMDenoisingInputSpec(SPMCommandInputSpec):
649
650
distribution is expected. Please note that the Rician noise estimation is sensitive for large signals in the neighbourhood and can lead to
650
651
artefacts, e.g. cortex can be affected by very high values in the scalp or in blood vessels.''')
651
652
652
-
replaceNANandINF=traits.Bool(
653
+
replace_nan_and_inf=traits.Bool(
653
654
True,
654
655
field='replaceNANandINF',
655
656
usedefault=True,
656
657
desc='Replace NAN by 0, -INF by the minimum and INF by the maximum of the image.'
0 commit comments