auto-palette 0.9.0

🎨 A Rust library that extracts prominent color palettes from images automatically.
Documentation
1
2
3
4
5
6
7
8
9
mod data;
mod error;
pub mod filter;
mod pixel;
pub mod segmentation;

pub use data::ImageData;
pub use error::{ImageError, ImageResult};
pub use pixel::{Pixel, Rgba, LABXY_CHANNELS, RGBA_CHANNELS};