Skip to main content

image_effects/filter/
mod.rs

1/// Contains all filtering algorithms.
2pub mod algorithms;
3
4pub use algorithms as filters;
5
6/// Raw implementations of the filters, done for organization.
7/// 
8/// There's both specific implementations, and more generic implementations using `From` and `Into`.
9pub mod raw;