image-effects 0.1.0

An assortment of effects that can be applied to an image with the help of `image`.
Documentation
1
2
3
4
5
6
7
8
9
/// Contains all filtering algorithms.
pub mod algorithms;

pub use algorithms as filters;

/// Raw implementations of the filters, done for organization.
/// 
/// There's both specific implementations, and more generic implementations using `From` and `Into`.
pub mod raw;