ImageFiltering.jl
ImageFiltering.jl supports linear and nonlinear filtering operations on arrays, with an emphasis on the kinds of operations used in image processing. The core function is imfilter
, and common kernels (filters) are organized in the Kernel
and KernelFactors
modules.
Example:
julia> using ImageFiltering, TestImages
julia> img = testimage("mandrill");
julia> imgg = imfilter(img, Kernel.gaussian(3));
julia> imgl = imfilter(img, Kernel.Laplacian());
Output:
Repository Link: GitHub - JuliaImages/ImageFiltering.jl: Julia implementations of multidimensional array convolution and nonlinear stencil operations
More tutorials can be found here in documentation: ImageFiltering.jl · ImageFiltering
We welcome new contributors to help improve the package and performance of existing solutions.