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
10
11
12
13
14
15
16
17
18
mod algorithm;
mod dbscan;
mod fastdbscan;
mod helper;
mod kmeans;
mod label;
mod seed;
mod segment;
mod slic;
mod snic;

pub use algorithm::Segmentation;
pub use dbscan::DbscanSegmentation;
pub use fastdbscan::FastDbscanSegmentation;
pub use kmeans::KmeansSegmentation;
pub use label::LabelImage;
pub use slic::SlicSegmentation;
pub use snic::SnicSegmentation;