Skip to content

Commit

Permalink
Merge pull request #515 from WilhelmusLab/514-fix-morph_fill
Browse files Browse the repository at this point in the history
fix: morph_fill
  • Loading branch information
cpaniaguam authored Nov 12, 2024
2 parents 2710e9a + e46a02c commit 67eb955
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/morph_fill.jl
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
include("./lut/lutfill.jl")

const LUTFILL = make_lutfill()

function _fill_operator_lut(
I::CartesianIndex{2},
img::AbstractArray{Bool},
nhood::CartesianIndices{2,Tuple{UnitRange{Int64},UnitRange{Int64}}},
)
return _operator_lut(I, img, nhood, make_lutfill())
return _operator_lut(I, img, nhood, LUTFILL)
end

"""
Expand Down

0 comments on commit 67eb955

Please sign in to comment.