lab 0.11.0

Tools for converting RGB colors to the CIE-L*a*b* color space, and comparing differences in color.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Experimental functions for parallel conversion using AVX and SSE4.1
//!
//! This module is conditionally compiled by the cfg gate
//! `#[cfg(target_arch = "x86_64")]`

mod labs_to_rgbs;
mod math;
mod rgbs_to_labs;

pub use self::labs_to_rgbs::{labs_to_rgb_bytes, labs_to_rgbs, labs_to_rgbs_chunk};
pub use self::rgbs_to_labs::{rgb_bytes_to_labs, rgbs_to_labs, rgbs_to_labs_chunk};