LocalFilters.jl
LocalFilters.jl copied to clipboard
Multi-dimensional local filters (convolution, mathematical morphology, etc.) for Julia.
Is it correct that since 2.0 most of the API tests are commented out? See https://github.com/emmt/LocalFilters.jl/blob/master/test/runtests.jl#L20-L133 and https://github.com/emmt/LocalFilters.jl/blob/master/test/runtests.jl#L303-L610
It would be great to have something similar to [MATLAB's `ordfilt2()`](https://www.mathworks.com/help/images/ref/ordfilt2.html).
It would be great to have the median filter built in.
`localmap` has some overheads due to the local buffer that must be allocated and filled. These overheads can be avoided in some specific cases: - Specialize `localmap` so that `localmap(mean,A,B)`...