Skip to main content

image_effects/dither/
mod.rs

1/// Contains all the dithering logic for the error propagation based algorithms.
2pub mod error;
3
4/// Contains logic for Ordered / Bayer dithering.
5pub mod bayer;
6
7pub use error::{
8    FLOYD_STEINBERG,
9    JARVIS_JUDICE_NINKE,
10    ATKINSON,
11    BURKES,
12    STUCKI,
13    SIERRA,
14    SIERRA_TWO_ROW,
15    SIERRA_LITE,
16};