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
10
11
12
13
14
15
16
/// Contains all the dithering logic for the error propagation based algorithms.
pub mod error;

/// Contains logic for Ordered / Bayer dithering.
pub mod bayer;

pub use error::{
    FLOYD_STEINBERG,
    JARVIS_JUDICE_NINKE,
    ATKINSON,
    BURKES,
    STUCKI,
    SIERRA,
    SIERRA_TWO_ROW,
    SIERRA_LITE,
};