Skip to content

Commit 2af5e71

Browse files
committed
fix: try a less generous threshold (0.15) for binarization
1 parent 66c37d4 commit 2af5e71

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

niworkflows/func/util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -399,7 +399,7 @@ def init_enhance_and_skullstrip_bold_wf(
399399
),
400400
name="map_brainmask",
401401
)
402-
binarize_mask = pe.Node(Binarize(thresh_low=0.5), name="binarize_mask")
402+
binarize_mask = pe.Node(Binarize(thresh_low=0.15), name="binarize_mask")
403403

404404
# fmt: off
405405
workflow.connect([

0 commit comments

Comments
 (0)