#color #delta #difference #cie #quantify

delta_e

DeltaE is a pure-Rust implementation of the CIEDE2000 algorithm

3 unstable releases

Uses old Rust 2015

0.2.1 Jun 23, 2019
0.2.0 Jun 29, 2017
0.1.0 May 26, 2017

#716 in Images

Download history 18/week @ 2024-11-20 22/week @ 2024-11-27 25/week @ 2024-12-04 42/week @ 2024-12-11 19/week @ 2024-12-18 17/week @ 2025-01-01 15/week @ 2025-01-08 23/week @ 2025-01-15 8/week @ 2025-01-22 14/week @ 2025-01-29 29/week @ 2025-02-05 31/week @ 2025-02-12 25/week @ 2025-02-19 34/week @ 2025-02-26 102/week @ 2025-03-05

193 downloads per month
Used in libgled

MIT license

14KB
154 lines

DeltaE - Quantify color differences in Rust

Docs License

DeltaE is a pure-Rust implementation of the CIEDE2000 algorithm which serves to quantify the difference between two colors. It is entirely based on the work of Zachary Schuessler, who has written a Javascript implementation of the algorithm.

Installation

If you're using Cargo, just add DeltaE to your Cargo.toml:

[dependencies]
delta_e = "0.2"

Example

extern crate delta_e;
extern crate lab;

use delta_e::DE2000;
use lab::Lab;

fn main() {
    let color_1 = Lab {
        l: 38.972,
        a: 58.991,
        b: 37.138,
    };

    let color_2 = Lab {
        l: 54.528,
        a: 42.416,
        b: 54.497,
    };

    let delta_e = DE2000::new(color_1, color_2);
    println!("The color difference is: {}", delta_e);
}

License

DeltaE is released under the MIT LICENSE.

About

This crate was written by Elliot Jackson.

Dependencies

~62KB