convolve-image 0.4.0

A small library to perform convolution operations on images with arbitrarily-sized separable kernels
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub mod kernel;
pub mod convolve;

#[cfg(feature = "image")]
pub mod image;
#[cfg(feature = "image")]
pub(crate) mod iter;

#[cfg(feature = "ndarray")]
pub mod ndarray;
#[cfg(feature = "ndarray")]
pub(crate) mod dimensions;

pub mod rescale;

pub use convolve::Convolution;