Skip to content

Commit

Permalink
Bug with shrink factors
Browse files Browse the repository at this point in the history
  • Loading branch information
bclenet committed Oct 17, 2023
1 parent ecc4977 commit d2cd3e4
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions narps_open/pipelines/team_08MQ.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,12 @@ def get_preprocessing(self):
normalization_anat.inputs.transforms = ['Rigid', 'Affine', 'SyN']
normalization_anat.inputs.metric = ['MI', 'MI', 'CC']
normalization_anat.inputs.metric_weight = [1.0 / 3.0, 1.0 / 3.0, 1.0 / 3.0]
normalization_anat.inputs.shrink_factors = [1, 1, 1]
normalization_anat.inputs.smoothing_sigmas = [0.0, 0.0, 0.0]
normalization_anat.inputs.shrink_factors = [[1,1,1], [1,1,1], [1,1,1]]
normalization_anat.inputs.smoothing_sigmas = [
[0.0, 0.0, 0.0],
[0.0, 0.0, 0.0],
[0.0, 0.0, 0.0]
]

# Threshold Node - create white-matter mask
threshold_white_matter = Node(Threshold(), name = 'threshold_white_matter')
Expand Down

0 comments on commit d2cd3e4

Please sign in to comment.