Skip to content

Commit

Permalink
fix: add se to function signature
Browse files Browse the repository at this point in the history
  • Loading branch information
cpaniaguam committed Nov 11, 2024
1 parent e7c2bac commit 8a7bc4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/new2-new3-final.jl
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Calculate the new image `new3` from the input image `new2`.
- `factor`: The factor to apply to the local maxima mask.
- `segment_mask`: The segment mask -- intersection of bw1 and bw2 in first tiled workflow of `master.m`.
"""
function get_new3(img, L0mask, radius, amount, local_maxima_mask, factor, segment_mask)
function get_new3(img, L0mask, radius, amount, local_maxima_mask, factor, segment_mask, se)
new3 = unsharp_mask(img, radius, amount, 255)
new3[L0mask] .= 0
new3 = reconstruct(new3, se, "dilation", false)
Expand Down

0 comments on commit 8a7bc4e

Please sign in to comment.