比较色调?

时间:2013-11-11 22:11:30

标签: java image image-processing colors

我有两种颜色,如何检查它们是否是相同的颜色但只是一个不同的颜色?我一直在努力,但我似乎无法弄明白,我真的不知道我在做什么大声笑......这就是我到目前为止所做的:

import java.awt.Color;

public class Sandbox {

    public Sandbox() {
        Color c = new Color(5349322);
        int r, g, b;
        r = c.getBlue();
        g = c.getGreen();
        b = c.getRed();
        System.out.println("Red: " +  r);
        System.out.println("Green: " + g);
        System.out.println("Blue: " + b);
    }

    private boolean FindColorTol(int intTargetColor, int Tolerance) {
        Color targetColor = new Color(intTargetColor);
        Color imgColor = new Color(5349322);
        int targetRED = targetColor.getBlue(),
            targetGREEN = targetColor.getGreen(),
            targetBLUE = targetColor.getRed(),
            imgRED = imgColor.getBlue(),
            imgGREEN = imgColor.getGreen(),
            imgBLUE = imgColor.getRed();

        return false;
    }

    private int getLargest(int...values) {
        int largest = 0;
        for(int i = 0; i < values.length; i++) {
            if(values.length > i + 1) {
                if(values[i] > values[i + 1]) 
                   largest = values[i];
               else 
                   largest = values[i + 1];
           }
       }
        return largest;
    }

    public static void main(String[] args) {
        new Sandbox();
    }
}

另外,为什么Color.getRed()返回蓝色的值,而Color.getBlue()返回的值返回红色的值?我使用它来查找RGB值:http://www.colorschemer.com/online.html

我正在尝试使用它来查找图片中的指定颜色。

2 个答案:

答案 0 :(得分:1)

colour theory中,通过混合不同数量的黑色来获得阴影。因此,您可以通过标准化它们的值来轻松检查两个RGB三元组是否对应于相同颜色的不同色调

max1 = max(r1,g1,b1);
max2 = max(r2,g2,b2);
if ( approxEQ(r1/max1,r2/max2,DELTA) && 
     approxEQ(g1/max1,g2/max2,DELTA) && 
     approxEQ(b1/max1,b2/max2,DELTA) ) {

  /* Same colour, different shades */

}

(显然,max(a,b,c)返回三个参数中最大的一个,approxEQ(a,b,d)如果true则返回|a-b|≤d,否则返回false。)

如果你想检查色调,最好还是converting your RGB values to HSV or HSL

答案 1 :(得分:0)

也许HSL Color会有所帮助。严格来说,我认为色调和饱和度需要是相同的值。