Skip to content

Commit 6d9ab79

Browse files
committed
disable head model smoothing by default
1 parent 85e9d2a commit 6d9ab79

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/cedalion/dot/head_model.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ def from_segmentation(
9797
landmarks_ras_file: str | None = None,
9898
brain_seg_types: list[str] = ["gm", "wm"],
9999
scalp_seg_types: list[str] = ["scalp"],
100-
smoothing: float = 0.5,
100+
smoothing: float = 0.,
101101
brain_face_count: int | None = 180000,
102102
scalp_face_count: int | None = 60000,
103103
fill_holes: bool = True,
@@ -220,7 +220,7 @@ def from_surfaces(
220220
landmarks_ras_file: str | None = None,
221221
brain_seg_types: list[str] = ["gm", "wm"],
222222
scalp_seg_types: list[str] = ["scalp"],
223-
smoothing: float = 0.5,
223+
smoothing: float = 0.0,
224224
brain_face_count: int | None = 180000,
225225
scalp_face_count: int | None = 60000,
226226
fill_holes: bool = False,

0 commit comments

Comments
 (0)