auto-palette 0.8.1

🎨 A Rust library that extracts prominent color palettes from images automatically.
Documentation
1
2
3
4
5
6
7
8
9
10
mod algorithm;
mod diversity;
mod error;
mod farthest;
mod weighted_farthest;

pub use algorithm::SamplingAlgorithm;
pub use diversity::DiversitySampling;
pub use error::SamplingError;
pub use weighted_farthest::WeightedFarthestSampling;