#color-space #image-processing #lab #hsl #perceptual #graphics #color-conversion

oklab

OK Lab is a perceptually uniform color space for image processing. Improvement of CIELAB.

2 stable releases

1.0.1 Oct 4, 2023
1.0.0 Feb 6, 2021

#733 in Images

Download history 177/week @ 2023-12-12 215/week @ 2023-12-19 101/week @ 2023-12-26 76/week @ 2024-01-02 106/week @ 2024-01-09 125/week @ 2024-01-16 219/week @ 2024-01-23 68/week @ 2024-01-30 123/week @ 2024-02-06 151/week @ 2024-02-13 211/week @ 2024-02-20 201/week @ 2024-02-27 149/week @ 2024-03-05 140/week @ 2024-03-12 111/week @ 2024-03-19 149/week @ 2024-03-26

571 downloads per month
Used in 6 crates (5 directly)

CC-PDDC license

7KB
111 lines

Convert sRGB to Oklab perceptual color space

Simple Rust implementation of the Oklab color space conversion routines based on the reference implementation in the blog post.

Mixing of colors in the Oklab color space is meant to give more pleasing gradients.

API

use oklab::*;
let Oklab {l, a, b} = srgb_to_oklab(RGB {r, g, b});
let rgb = oklab_to_srgb(Oklab {l, a, b});

Oklab components are floats. l is in range 0 to 1, and a/b are small numbers that can be negative.


lib.rs:

What is Oklab color space?

Dependencies

~77KB