{"id":21700454,"url":"https://github.com/elliotekj/deltae","last_synced_at":"2025-07-31T03:33:10.909Z","repository":{"id":49548389,"uuid":"92506748","full_name":"elliotekj/DeltaE","owner":"elliotekj","description":"DeltaE is a pure-Rust implementation of the CIEDE2000 algorithm","archived":false,"fork":false,"pushed_at":"2021-06-15T03:21:08.000Z","size":13,"stargazers_count":25,"open_issues_count":2,"forks_count":9,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-06-22T08:16:50.113Z","etag":null,"topics":["cie","ciede2000","color","quantification","rust"],"latest_commit_sha":null,"homepage":"https://crates.io/crates/delta_e","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/elliotekj.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-05-26T12:03:53.000Z","updated_at":"2025-05-20T09:19:04.000Z","dependencies_parsed_at":"2022-09-02T14:41:31.178Z","dependency_job_id":null,"html_url":"https://github.com/elliotekj/DeltaE","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/elliotekj/DeltaE","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elliotekj%2FDeltaE","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elliotekj%2FDeltaE/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elliotekj%2FDeltaE/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elliotekj%2FDeltaE/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/elliotekj","download_url":"https://codeload.github.com/elliotekj/DeltaE/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elliotekj%2FDeltaE/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265212935,"owners_count":23728630,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cie","ciede2000","color","quantification","rust"],"created_at":"2024-11-25T20:14:22.694Z","updated_at":"2025-07-13T22:08:30.003Z","avatar_url":"https://github.com/elliotekj.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# DeltaE - Quantify color differences in Rust\n\n[![Crates.io](https://meritbadge.herokuapp.com/delta_e)](https://crates.io/crates/delta_e)\n[![Docs](https://docs.rs/delta_e/badge.svg)](https://docs.rs/delta_e)\n[![License](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/elliotekj/DeltaE/blob/master/LICENSE)\n\nDeltaE is a pure-Rust implementation of the [CIEDE2000\nalgorithm](http://en.wikipedia.org/wiki/Color_difference#CIEDE2000) which serves\nto quantify the difference between two colors. It is entirely based on the work\nof [Zachary Schuessler](http://zaclee.net/), who has written a [Javascript\nimplementation](https://github.com/zschuessler/DeltaE/blob/master/src/dE00.js)\nof the algorithm.\n\n## Installation\n\nIf you're using Cargo, just add DeltaE to your `Cargo.toml`:\n\n```toml\n[dependencies]\ndelta_e = \"0.2\"\n```\n\n## Example\n\n```rust\nextern crate delta_e;\nextern crate lab;\n\nuse delta_e::DE2000;\nuse lab::Lab;\n\nfn main() {\n    let color_1 = Lab {\n        l: 38.972,\n        a: 58.991,\n        b: 37.138,\n    };\n\n    let color_2 = Lab {\n        l: 54.528,\n        a: 42.416,\n        b: 54.497,\n    };\n\n    let delta_e = DE2000::new(color_1, color_2);\n    println!(\"The color difference is: {}\", delta_e);\n}\n```\n\n## License\n\nDeltaE is released under the MIT [`LICENSE`](/elliotekj/DeltaE/blob/master/LICENSE).\n\n## About\n\nThis crate was written by [Elliot Jackson](https://elliotekj.com).\n\n- Blog: [https://elliotekj.com](https://elliotekj.com)\n- Email: elliot@elliotekj.com\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Felliotekj%2Fdeltae","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Felliotekj%2Fdeltae","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Felliotekj%2Fdeltae/lists"}