convolve-nd 0.1.0

A small library to perform convolution operations on arrays of upto 3 dimensions using arbitrarily-sized separable kernels
Documentation
1
2
3
4
5
6
7
8
9
10
pub mod kernel;
pub mod convolve;
pub mod array;
pub(crate) mod dimensions;
pub mod rescale;
pub use convolve::Convolution;

pub mod exports {
    pub use ndarray;
}