Php RGB到最接近的预定义颜色

Php RGB到最接近的预定义颜色,php,function,colors,gd,Php,Function,Colors,Gd,编辑: 根据给出的答案,我做了这个函数 function grabclosestcolor($r, $g, $b){ $colors = array(array(124,12,12),array(7,7,11),array(110,224,219),array(123,123,123),array(124,177,74),array(130,86,53),array(77,77,77),array(164,124,68),array(204,196,132),array(164,148,

编辑:

根据给出的答案,我做了这个函数

function grabclosestcolor($r, $g, $b){
    $colors = array(array(124,12,12),array(7,7,11),array(110,224,219),array(123,123,123),array(124,177,74),array(130,86,53),array(77,77,77),array(164,124,68),array(204,196,132),array(164,148,147),array(163,123,67),array(26,122,26), array(195,195,50),array(193,193,193),array(255,248,73),array(243,243,243));
    $differencearray = array();
    foreach ($colors as $value) {
        $difference = sqrt(pow($r-$value[0],2)+pow($g-$value[1],2)+pow($b-$value[2],2));
        array_push($differencearray, $difference);
        $smallest = min($differencearray);
        $key = array_search($smallest, $differencearray);
        return $colors[$key];
        }
    }
我的目标是这样。我抓取一张图片,循环遍历每个像素,并抓取其x、y和rgb

我没有仅仅抓取rgb,而是有一个预定义的数组,我正在寻找从我抓取的颜色到预定义数组的最接近的匹配。 这里的目标是只使用预定义数组中的颜色。 这是我的一系列颜色

$colors = array(array(124,12,12),array(7,7,11),array(110,224,219),array(123,123,123),array(124,177,74),array(130,86,53),array(77,77,77),array(164,124,68),array(204,196,132),array(164,148,147),array(163,123,67),array(26,122,26), array(195,195,50),array(193,193,193),array(255,248,73),array(243,243,243));
这是我现有的代码,可以循环使用

$int = imagesx($im) - 1;
$int2 = imagesy($im) - 1;
$start2 = 0;
do{
    $start = 0;
    do{
        $rgb = imagecolorat($im, $start, $start2);
        $r = ($rgb >> 16) & 0xFF;
        $g = ($rgb >> 8) & 0xFF;
        $b = $rgb & 0xFF;
        $value = rgb2hex($r,$g,$b).":$start:$start2";
        array_push($colorsofimage, $value);
    } while($int > $start++);
} while($int2 > $start2++);
rgb2hex是一个用户定义的函数,但我想完成的是用函数更改该函数以获取最接近的颜色

$colorsofimage包含带有十六进制:x:y的每个像素信息的数组 我希望它是rgb2hexNEWFUNCTION$r,$g,$b; 因此,新十六进制是预定义数组中的1


我希望你能理解,因为我不知道怎么做,因为我不知道颜色的算法。

计算从输入颜色到调色板所有可能候选颜色的距离,然后选择距离最小的颜色作为替换颜色


距离可以用你喜欢的任何方式定义;欧几里德距离似乎适用于RGB立方体、圆柱体或HSL/HSV圆锥体。

您必须计算到每种颜色的距离,然后选择最小的

有几种方法可以做到这一点。计算距离的简单方法如下:

sqrt((r-r1)^2+(g-g1)^2+(b-b1)^2)
更好的方法可能是合并加权值以计算距离,例如转换RGB->YUV时使用的值:

Y = 0.299 * R + 0.587 * G + 0.114 * B
在这种情况下,您将使用

sqrt(((r - r1) * .299)^2 + ((g - g1) * .587)^2 + ((b - b1) * .114)^2)
当然,由于您不需要精确的距离,只需要比较,您可以而且可能应该跳过平方根,进行最后一次计算:

((r - r1) * .299)^2 + ((g - g1) * .587)^2 + ((b - b1) * .114)^2
这个立方体就是一个立方体。在24位颜色中,每边的长度为256,允许值从0到255。为了在这个立方体中找到最接近的颜色,你需要一个距离函数。最简单、最直观的是:如果你有颜色r1、g1、b1和另一种颜色r2、g2、b2,那么距离就是sqrtr2-r1^2+g2-g1^2+b2-b1^2

然后,您面临的挑战是找到预定义数组中所有值的最佳匹配。我建议您从迭代所有值开始,然后依次检查每个值的距离。请注意,出于此目的,您不需要执行sqrt,只需对平方和进行比较就足够了,这样做的好处是完全基于整数数学。我的PHP不是很好,但大致上您可以这样做:

function dist($col1,$col2) {
  $delta_r = $col1[0] - $col2[0];
  $delta_g = $col1[1] - $col2[1];
  $delta_b = $col1[2] - $col2[2];
  return $delta_r * $delta_r + $delta_g * $delta_g + $delta_b * $delta_b;
} 

$closest=$colors[0];
$mindist=dist($rgb,$colors[0]);
$ncolors=sizeof($colors);
for($i = 1; $i < $ncolors; ++$i)
{
    $currdist = dist($rgb,$colors[$i]);
    if($currdist<$mindist) {
      $mindist=$currdist;
      $closest=$colors[$i];
    }
}

例如,有更复杂的距离函数,更好地考虑了色差的心理视觉解释,但我怀疑这超出了你的需要

求平方根没有意义。查找最短距离与查找最短平方距离相同。sqrt是一个昂贵的操作,所以跳过它


当然,这是否真的重要,取决于您的程序多久进行一次计算,但这仍然是毫无意义的。

因为这个问题显示在goolge搜索结果的前十名中,所以这里有一个我几年前编写的更复杂的函数,它产生的结果比现有的PHP函数更好

/*
 * Die Funktion gibt den Array-Schlüssel der Farbe ($palette),
 * die am ehesten der Farbe $givenColor entspricht.
 * 
 * Returns the index of the palette-color which is most similar
 * to $givenColor.
 * 
 * $givenColor und die Einträge in $palette können entweder
 * Strings im Format (#)rrggbb
 * (z. B. "ff0000", "4da4f3" oder auch "#b5d7f3")
 * oder Arrays mit je einem Wert für Rot, Grün und Blau 
 * (z. B. $givenColor = array( 0xff, 0x00, 0x00 ) )
 * sein.
 * 
 * $givenColor and the colors in $palette should be either
 * formatted as (#)rrggbb
 * (e. g. "ff0000", "4da4f3" or "#b5d7f3")
 * or arrays with values for red, green and blue
 * (e. g. $givenColor = array( 0xff, 0x00, 0x00 ) )
 *
 * Referenzen/References:
 * function rgb2lab
 *   - http://www.f4.fhtw-berlin.de/~barthel/ImageJ/ColorInspector//HTMLHilfe/farbraumJava.htm
 *   - http://www.brucelindbloom.com/index.html?Eqn_RGB_to_XYZ.html
 *   - http://www.brucelindbloom.com/index.html?Eqn_XYZ_to_Lab.html
 *
 * function deltaE
 *   - http://www.brucelindbloom.com/index.html?Eqn_DeltaE_CMC.html
 */
function getNearestColor( $givenColor,
                          $palette = array('blue' => '0000ff','red' => 'ff0000','green' => '00ff00','yellow' => 'ffff00','black' => '000000','white' => 'ffffff','orange' => 'ff8800','purple' => 'ff00ff', 'teal' => '00ffff')
  )
{
  if(!function_exists('rgb2lab'))
  {
    function rgb2lab($rgb) {
      $eps = 216/24389; $k = 24389/27;
      // reference white D50
      $xr = 0.964221; $yr = 1.0; $zr = 0.825211;
      // reference white D65
      #$xr = 0.95047; $yr = 1.0; $zr = 1.08883;

      // RGB to XYZ
      $rgb[0] = $rgb[0]/255; //R 0..1
      $rgb[1] = $rgb[1]/255; //G 0..1
      $rgb[2] = $rgb[2]/255; //B 0..1

      // assuming sRGB (D65)
      $rgb[0] = ($rgb[0] <= 0.04045)?($rgb[0]/12.92):pow(($rgb[0]+0.055)/1.055,2.4);
      $rgb[1] = ($rgb[1] <= 0.04045)?($rgb[1]/12.92):pow(($rgb[1]+0.055)/1.055,2.4);
      $rgb[2] = ($rgb[2] <= 0.04045)?($rgb[2]/12.92):pow(($rgb[2]+0.055)/1.055,2.4);

      // sRGB D50
      $x =  0.4360747*$rgb[0] + 0.3850649*$rgb[1] + 0.1430804*$rgb[2];
      $y =  0.2225045*$rgb[0] + 0.7168786*$rgb[1] + 0.0606169*$rgb[2];
      $z =  0.0139322*$rgb[0] + 0.0971045*$rgb[1] + 0.7141733*$rgb[2];
      // sRGB D65
      /*$x =  0.412453*$rgb[0] + 0.357580*$rgb[1] + 0.180423*$rgb[2];
      $y =  0.212671*$rgb[0] + 0.715160*$rgb[1] + 0.072169*$rgb[2];
      $z =  0.019334*$rgb[0] + 0.119193*$rgb[1] + 0.950227*$rgb[2];*/

      // XYZ to Lab
      $xr = $x/$xr; $yr = $y/$yr; $zr = $z/$zr;

      $fx = ($xr > $eps)?pow($xr, 1/3):($fx = ($k * $xr + 16) / 116); $fy = ($yr > $eps)?pow($yr, 1/3):($fy = ($k * $yr + 16) / 116); $fz = ($zr > $eps)?pow($zr, 1/3):($fz = ($k * $zr + 16) / 116);

      $lab = array();
      $lab[] = round(( 116 * $fy ) - 16); $lab[] = round(500*($fx-$fy)); $lab[] = round(200*($fy-$fz));      
      return $lab;
    } // function rgb2lab
  }

  if(!function_exists('deltaE'))
  {
    function deltaE($lab1, $lab2)
    {
      // CMC 1:1
      $l = 1; $c = 1;

      $c1 = sqrt($lab1[1]*$lab1[1]+$lab1[2]*$lab1[2]); $c2 = sqrt($lab2[1]*$lab2[1]+$lab2[2]*$lab2[2]);

      $h1 = (((180000000/M_PI) * atan2($lab1[1],$lab1[2]) + 360000000) % 360000000)/1000000;

      $t = (164 <= $h1 AND $h1 <= 345)?(0.56 + abs(0.2 * cos($h1+168))):(0.36 + abs(0.4 * cos($h1+35)));
      $f = sqrt(pow($c1,4)/(pow($c1,4) + 1900));

      $sl = ($lab1[0] < 16)?(0.511):((0.040975*$lab1[0])/(1 + 0.01765*$lab1[0]));
      $sc = (0.0638 * $c1)/(1 + 0.0131 * $c1) + 0.638;
      $sh = $sc * ($f * $t + 1 -$f);

      return sqrt( pow(($lab1[0]-$lab2[0])/($l * $sl),2) + pow(($c1-$c2)/($c * $sc),2) + pow(sqrt(($lab1[1]-$lab2[1])*($lab1[1]-$lab2[1]) + ($lab1[2]-$lab2[2])*($lab1[2]-$lab2[2]) + ($c1-$c2)*($c1-$c2))/$sh,2) );
    } // function deltaE
  }

  if(!function_exists('colorDistance'))
  {
    function colorDistance($lab1,$lab2)
    {
      return sqrt(($lab1[0]-$lab2[0])*($lab1[0]-$lab2[0])+($lab1[1]-$lab2[1])*($lab1[1]-$lab2[1])+($lab1[2]-$lab2[2])*($lab1[2]-$lab2[2]));
    }
  }

  if(!function_exists('str2rgb'))
  {
    function str2rgb($str)
    {
      $str = preg_replace('~[^0-9a-f]~','',$str);
      $rgb = str_split($str,2);
      for($i=0;$i<3;$i++)
        $rgb[$i] = intval($rgb[$i],16);

      return $rgb;
    } // function str2rgb
  }

  // split into RGB, if not already done
  $givenColorRGB = is_array($givenColor)?$givenColor:str2rgb($givenColor);
  $min = 0xffff;
  $return = NULL;

  foreach($palette as $key => $color)
  {
    // split into RGB
    $color = is_array($color)?$color:str2rgb($color);
    // deltaE
    #if($min >= ($deltaE = deltaE(rgb2lab($color),rgb2lab($givenColorRGB))))
    // euclidean distance
    if($min >= ($deltaE = colorDistance(rgb2lab($color),rgb2lab($givenColorRGB))))
    {
      $min = $deltaE;
      $return = $key;
    }
  }

  return $return;
}

感谢您的帮助,我将编辑OP并放入我制作的函数。随机思考:严格来说,如果性能是一个问题,您不需要求平方根,只需找到最小的平方。@mootinator为什么我们需要平方值?为什么不只是最短距离?@mootinator我们是不是在平方以消除负值?有人知道绝对值函数是否比平方快吗?或者简单地转换成一个字符串,去掉负数,然后再转换回一个数字,或者如果负数,就用负数1乘以它本身?@Albert Renshaw我们正在平方以找到两点之间的欧几里德距离。我们跳过了距离的平方根,因为这一步不会影响距离的排序顺序。根据您的努力程度,我类似问题的答案可能会有用-再说一次,我对PHP不太了解,但是,您作为解决方案提供的函数看起来比我之前建议的效率要低得多:为什么foreach循环中会有返回?它不一定是一个立方体,即使它通常是这样做的。它主要是一个向量空间,也可以是一个平行体。@user502515:可能是,但不太可能。我遇到的所有RGB颜色空间中,最明显的是,sRGB的范围往往在0到1或0到255之间。其他颜色空间,如CIE实验室,确实有不同的边界,但它们不是RGB。@beldaz为什么我们还要平方距离?为什么不直接计算每种颜色的距离之和?是为了消除负值吗?“有没有更快的方法可以做到这一点?”阿尔伯特距离的总和就像绕着一个正方形走,而不是绕着一个正方形走
n直接穿过它:距离不同FWIW你的方法有时被称为曼哈顿距离。对我来说,这是唯一正确的答案!请注意,同时在上面的代码中使用了I。然而,如果我今天要实现一个新的颜色距离函数,我会使用DIN99c或DIN99d颜色空间,因为它们比CIE94或CIEDE2000更容易和更快地计算,同时提供类似的质量。这有什么用?为什么更好?此功能使用颜色空间,其中颜色之间的距离与人类的颜色感知相似。这允许特定颜色从给定调色板中获得最佳匹配颜色。但正如我所写的:今天我将使用DIN99的实现来实现这一点。上述函数是十多年前编写的。