/** * Copyright (c) 2024, Timothy Stack * * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * * Redistributions of source code must retain the above copyright notice, this * list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * Neither the name of Timothy Stack nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ''AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include #include "color_spaces.hh" #include "config.h" bool rgb_color::operator<(const rgb_color& rhs) const { if (rc_r < rhs.rc_r) return true; if (rhs.rc_r < rc_r) return false; if (rc_g < rhs.rc_g) return true; if (rhs.rc_g < rc_g) return false; return rc_b < rhs.rc_b; } bool rgb_color::operator>(const rgb_color& rhs) const { return rhs < *this; } bool rgb_color::operator<=(const rgb_color& rhs) const { return !(rhs < *this); } bool rgb_color::operator>=(const rgb_color& rhs) const { return !(*this < rhs); } bool rgb_color::operator==(const rgb_color& rhs) const { return rc_r == rhs.rc_r && rc_g == rhs.rc_g && rc_b == rhs.rc_b; } bool rgb_color::operator!=(const rgb_color& rhs) const { return !(rhs == *this); } lab_color::lab_color(const rgb_color& rgb) { double r = rgb.rc_r / 255.0, g = rgb.rc_g / 255.0, b = rgb.rc_b / 255.0, x, y, z; r = (r > 0.04045) ? pow((r + 0.055) / 1.055, 2.4) : r / 12.92; g = (g > 0.04045) ? pow((g + 0.055) / 1.055, 2.4) : g / 12.92; b = (b > 0.04045) ? pow((b + 0.055) / 1.055, 2.4) : b / 12.92; x = (r * 0.4124 + g * 0.3576 + b * 0.1805) / 0.95047; y = (r * 0.2126 + g * 0.7152 + b * 0.0722) / 1.00000; z = (r * 0.0193 + g * 0.1192 + b * 0.9505) / 1.08883; x = (x > 0.008856) ? pow(x, 1.0 / 3.0) : (7.787 * x) + 16.0 / 116.0; y = (y > 0.008856) ? pow(y, 1.0 / 3.0) : (7.787 * y) + 16.0 / 116.0; z = (z > 0.008856) ? pow(z, 1.0 / 3.0) : (7.787 * z) + 16.0 / 116.0; this->lc_l = (116.0 * y) - 16; this->lc_a = 500.0 * (x - y); this->lc_b = 200.0 * (y - z); } double lab_color::deltaE(const lab_color& other) const { double deltaL = this->lc_l - other.lc_l; double deltaA = this->lc_a - other.lc_a; double deltaB = this->lc_b - other.lc_b; double c1 = sqrt(this->lc_a * this->lc_a + this->lc_b * this->lc_b); double c2 = sqrt(other.lc_a * other.lc_a + other.lc_b * other.lc_b); double deltaC = c1 - c2; double deltaH = deltaA * deltaA + deltaB * deltaB - deltaC * deltaC; deltaH = deltaH < 0.0 ? 0.0 : sqrt(deltaH); double sc = 1.0 + 0.045 * c1; double sh = 1.0 + 0.015 * c1; double deltaLKlsl = deltaL / (1.0); double deltaCkcsc = deltaC / (sc); double deltaHkhsh = deltaH / (sh); double i = deltaLKlsl * deltaLKlsl + deltaCkcsc * deltaCkcsc + deltaHkhsh * deltaHkhsh; return i < 0.0 ? 0.0 : sqrt(i); } bool lab_color::operator<(const lab_color& rhs) const { if (lc_l < rhs.lc_l) return true; if (rhs.lc_l < lc_l) return false; if (lc_a < rhs.lc_a) return true; if (rhs.lc_a < lc_a) return false; return lc_b < rhs.lc_b; } bool lab_color::operator>(const lab_color& rhs) const { return rhs < *this; } bool lab_color::operator<=(const lab_color& rhs) const { return !(rhs < *this); } bool lab_color::operator>=(const lab_color& rhs) const { return !(*this < rhs); } bool lab_color::operator==(const lab_color& rhs) const { return lc_l == rhs.lc_l && lc_a == rhs.lc_a && lc_b == rhs.lc_b; } bool lab_color::operator!=(const lab_color& rhs) const { return !(rhs == *this); } bool lab_color::sufficient_contrast(const lab_color& other) const { if (std::abs(this->lc_l - other.lc_l) > 15) { return true; } return (std::signbit(this->lc_a) != std::signbit(other.lc_a) || std::signbit(this->lc_b) != std::signbit(other.lc_b)); }