This library provides a color quantizer based on the [NEUQUANT](https://scientificgems.wordpress.com/stuff/neuquant-fast-high-quality-image-quantization/)
quantization algorithm by Anthony Dekker.
```rust
let data = vec![[0; 4]; 10];
let nq = qwant::NeuQuant::new(10, 256, &data);