1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 11:37:45 +00:00

LibGfx: Add DeltaE() function

This commit is contained in:
Nico Weber 2023-04-29 20:35:57 -04:00 committed by Andreas Kling
parent adec1abf81
commit 923027b1df
5 changed files with 173 additions and 0 deletions

View file

@ -0,0 +1,21 @@
/*
* Copyright (c) 2023, Nico Weber <thakis@chromium.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <LibGfx/CIELAB.h>
namespace Gfx {
// Returns a number between 0 and 100 that describes how far apart two colors are in human perception.
// A return value < 1 means that the two colors are not noticeably different.
// The larger the return value, the easier it is to tell the two colors apart.
// Works better for colors that are somewhat "close".
//
// You can use ICC::sRGB()->to_lab() to convert sRGB colors to CIELAB.
float DeltaE(CIELAB const&, CIELAB const&);
}