Skip to content

Commit

Permalink
feat(interpolate_flow): expose mask_value_thr
Browse files Browse the repository at this point in the history
  • Loading branch information
nkemnitz committed Feb 17, 2025
1 parent d79f9f6 commit 1955e4f
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ def build_interpolate_flow( # pylint: disable=too-many-locals
bbox: BBox3D | None = None,
auto_bbox: bool = False,
dst_tighten_bounds: bool = False,
mask_value_thr: float = 0,
) -> mazepa.Flow:
if dst is None:
dst = src
Expand Down Expand Up @@ -100,6 +101,7 @@ def build_interpolate_flow( # pylint: disable=too-many-locals
op=make_interpolate_operation(
res_change_mult=dst_res / last_res,
mode=mode,
mask_value_thr=mask_value_thr,
),
dst=dst,
dst_resolution=dst_res,
Expand Down

0 comments on commit 1955e4f

Please sign in to comment.