Add bad random dithering

This commit is contained in:
Joscha 2023-07-30 20:37:18 +02:00
parent d332a2560e
commit 452428ce5f
4 changed files with 72 additions and 4 deletions

View file

@ -12,6 +12,7 @@ use palette::{
color_difference::{Ciede2000, EuclideanDistance, HyAb},
Clamp, IntoColor, Lab, Srgb,
};
use rand::{rngs::SmallRng, Rng, SeedableRng};
use crate::util;
@ -122,7 +123,8 @@ pub struct AlgoThreshold;
impl<C, D> Algorithm<C, D> for AlgoThreshold
where
Srgb: IntoColor<C>,
C: IntoColor<Srgb> + Copy,
C: Copy,
C: IntoColor<Srgb> ,
D: Difference<C>,
{
fn run(mut image: RgbaImage, palette: Palette<C>) -> RgbaImage {
@ -134,3 +136,40 @@ where
image
}
}
// TODO Fix probability calculation
//
// Choose probability for each color such that the expected value of a pixel is
// its actual color (or as close as possible).
//
// We want to represent a pixel as a linear combination of palette colors with
// factors in the range [0, 1] that sum up to 1. Then we can use those factors
// as probabilities. This may not work for every palette.
//
// As a secondary optimization target, we might want to miminize the amount of
// nonzero factors, if possible.
pub struct AlgoRandom;
impl<C, D> Algorithm<C, D> for AlgoRandom
where
Srgb: IntoColor<C>,
C: AsMut<[f32; 3]>,
C: Copy,
C: IntoColor<Srgb>,
D: Difference<C>,
{
fn run(mut image: RgbaImage, palette: Palette<C>) -> RgbaImage {
let mut rng = SmallRng::seed_from_u64(0);
let range_radius = 1.0;
for pixel in image.pixels_mut() {
let mut color: C = util::pixel_to_color(*pixel);
color.as_mut()[0] += rng.gen_range(-range_radius..=range_radius);
color.as_mut()[1] += rng.gen_range(-range_radius..=range_radius);
color.as_mut()[2] += rng.gen_range(-range_radius..=range_radius);
let color = palette.nearest::<D>(color);
util::update_pixel_with_color(pixel, color);
}
image
}
}

View file

@ -23,8 +23,8 @@ use image::{ImageFormat, RgbaImage};
use mark::{
bw,
dither::{
AlgoThreshold, Algorithm, DiffCiede2000, DiffClamp, DiffEuclid, DiffHyAb, DiffManhattan,
DiffManhattanSquare, Difference, Palette,
AlgoRandom, AlgoThreshold, Algorithm, DiffCiede2000, DiffClamp, DiffEuclid, DiffHyAb,
DiffManhattan, DiffManhattanSquare, Difference, Palette,
},
};
use palette::{color_difference::EuclideanDistance, Clamp, IntoColor, Lab, LinSrgb, Oklab, Srgb};
@ -69,6 +69,7 @@ impl BwCmd {
#[derive(Debug, Clone, Copy, clap::ValueEnum)]
enum DitherAlgorithm {
Threshold,
Random,
}
#[derive(Debug, Clone, Copy, clap::ValueEnum)]
@ -158,6 +159,7 @@ impl DitherCmd {
fn run_c<C>(self, image: RgbaImage) -> RgbaImage
where
Srgb: IntoColor<C>,
C: AsMut<[f32; 3]>,
C: AsRef<[f32; 3]>,
C: Clamp,
C: Copy,
@ -184,11 +186,15 @@ impl DitherCmd {
fn run_cd<C, D>(self, image: RgbaImage) -> RgbaImage
where
Srgb: IntoColor<C>,
C: IntoColor<Srgb> + Clamp + Copy,
C: AsMut<[f32; 3]>,
C: Clamp,
C: Copy,
C: IntoColor<Srgb>,
D: Difference<C>,
{
match self.algorithm {
DitherAlgorithm::Threshold => self.run_acd::<AlgoThreshold, C, D>(image),
DitherAlgorithm::Random => self.run_acd::<AlgoRandom, C, D>(image),
}
}