Skip to content

Commit

Permalink
fix: update default parameter for get_holes function
Browse files Browse the repository at this point in the history
  • Loading branch information
cpaniaguam committed Oct 16, 2024
1 parent 5b20acd commit 83033f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/segmentation_a_direct.jl
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ function segmentation_A(
return segmented_A
end

function get_holes(img, min_opening_area, se=IceFloeTracker.MorphSE.se_disk4())
function get_holes(img, min_opening_area=20, se=IceFloeTracker.se_disk4())
img .= ImageMorphology.area_opening(img; min_area=min_opening_area)
IceFloeTracker.hbreak!(img)

Expand Down

0 comments on commit 83033f3

Please sign in to comment.