Skip to content

Commit 3a716e5

Browse files
authored
Merge pull request #443 from mgxd/fix/n4-mask
FIX: Match mask header prior to n4 correction
2 parents bfc208d + 996d704 commit 3a716e5

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

nibabies/workflows/anatomical/surfaces.py

+7-1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
from niworkflows.interfaces.freesurfer import (
1616
PatchedRobustRegister as RobustRegister,
1717
)
18+
from niworkflows.interfaces.header import MatchHeader
1819
from niworkflows.interfaces.morphology import BinaryDilation
1920
from niworkflows.interfaces.patches import FreeSurferSource
2021
from smriprep.interfaces.freesurfer import MakeMidthickness
@@ -126,6 +127,9 @@ def init_mcribs_surface_recon_wf(
126127
mask_dil = pe.Node(BinaryDilation(radius=3), name='mask_dil')
127128
mask_las = pe.Node(ReorientImage(target_orientation='LAS'), name='mask_las')
128129

130+
# N4 has low tolerance for mismatch between input / mask
131+
match_header = pe.Node(MatchHeader(), name='match_header')
132+
129133
# N4BiasCorrection occurs in MCRIBTissueSegMCRIBS (which is skipped)
130134
# Run it (with mask to rescale intensities) prior injection
131135
n4_mcribs = pe.Node(
@@ -177,7 +181,9 @@ def init_mcribs_surface_recon_wf(
177181
('subjects_dir', 'subjects_dir'),
178182
('subject_id', 'subject_id')]),
179183
(t2w_las, n4_mcribs, [('out_file', 'input_image')]),
180-
(mask_las, n4_mcribs, [('out_file', 'mask_image')]),
184+
(mask_las, match_header, [('out_file', 'in_file')]),
185+
(t2w_las, match_header, [('out_file', 'reference')]),
186+
(match_header, n4_mcribs, [('out_file', 'mask_image')]),
181187
(n4_mcribs, mcribs_recon, [('output_image', 't2w_file')]),
182188
(seg_las, mcribs_recon, [('out_file', 'segmentation_file')]),
183189
(inputnode, mcribs_postrecon, [

0 commit comments

Comments
 (0)