Crate dithereens

Source
Expand description

Functions and traits for quantizing values with error-diffusion.

This is mostly useful when e.g. quantizing from a f32- or f16-per-channel color resolution to something like u16- or u8-per-channel. In these cases quantization without error-diffusion would lead to banding.

The crate uses generics to allow interpolation of any type for which certain traits are defined.

§Examples

let mut rng = rand::rng();

let value: f32 = 0.5;

// Dither `value` to `127u8` or `128u8`, with a probability of
// 50%.
// Note that we still clamp the value since it could be outside
// the target type's range.
let dithered_value: u8 =
    clamp(simple_dither(value, 255.0, &mut rng) as u8, 0, 255);

assert!(dithered_value == 127 || 128 == dithered_value);

Traits§

Dither
SimpleDither

Functions§

dither
Dither a value using random noise. With control over scaling, mapped interval and dither strength.
simple_dither
Dither a value using random noise. With control over scaling.