Skip to content

Commit 1dedc71

Browse files
committed
style
1 parent 54400ef commit 1dedc71

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

nipype/interfaces/cat12/preprocess.py

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -634,10 +634,11 @@ class CAT12SANLMDenoisingInputSpec(SPMCommandInputSpec):
634634
desc='Filename suffix. Specify the string to be appended to the filenames of the filtered image file(s).'
635635
)
636636

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.')
641642

642643
rician = traits.Bool(
643644
True,
@@ -649,14 +650,14 @@ class CAT12SANLMDenoisingInputSpec(SPMCommandInputSpec):
649650
distribution is expected. Please note that the Rician noise estimation is sensitive for large signals in the neighbourhood and can lead to
650651
artefacts, e.g. cortex can be affected by very high values in the scalp or in blood vessels.''')
651652

652-
replaceNANandINF = traits.Bool(
653+
replace_nan_and_inf = traits.Bool(
653654
True,
654655
field='replaceNANandINF',
655656
usedefault=True,
656657
desc='Replace NAN by 0, -INF by the minimum and INF by the maximum of the image.'
657658
)
658659

659-
NCstr = traits.Enum(
660+
noisecorr_strength = traits.Enum(
660661
'-Inf',
661662
2,
662663
4,

0 commit comments

Comments
 (0)