how could i compare colors in java?

守給你的承諾、 提交于 2019-12-17 19:43:22

问题


im trying to make a random color generator but i dont want similar colors to show up in the arrayList

public class RandomColorGen {

public static Color RandColor() {
    Random rand = new Random();
    float r = rand.nextFloat();
    float g = rand.nextFloat();
    float b = rand.nextFloat();
    Color c = new Color(r, g, b, 1);
    return c;

}

public static ArrayList<Color> ColorList(int numOfColors) {
    ArrayList<Color> colorList = new ArrayList<Color>();
    for (int i = 0; i < numOfColors; i++) {
        Color c = RandColor();
        if(similarcolors){
            dont add
        }
        colorList.add(c);

    }
    return colorList;
}

}

I'm really confused please help :)


回答1:


Implement a similarTo() method in Color class.

Then use:

public static ArrayList<Color> ColorList(int numOfColors) {
    ArrayList<Color> colorList = new ArrayList<Color>();
    for (int i = 0; i < numOfColors; i++) {
        Color c = RandColor();
        boolean similarFound = false;
        for(Color color : colorList){
            if(color.similarTo(c)){
                 similarFound = true;
                 break;
            }
        }
        if(!similarFound){
            colorList.add(c);
        } 

    }
    return colorList;
}

To implement the similarTo:

Take a look at Color similarity/distance in RGBA color space and finding similar colors programatically. A simple approach can be:

((r2 - r1)2 + (g2 - g1)2 + (b2 - b1)2)1/2

And:

boolean similarTo(Color c){
    double distance = (c.r - this.r)*(c.r - this.r) + (c.g - this.g)*(c.g - this.g) + (c.b - this.b)*(c.b - this.b)
    if(distance > X){
        return true;
    }else{
        return false;
    }
}

However, you should find your X according to your imagination of similar.




回答2:


I tried this and it worked very well:

Color c1 = Color.WHITE;
Color c2 = new Color(255,255,255);

if(c1.getRGB() == c2.getRGB()) 
    System.out.println("true");
else
    System.out.println("false");
}

The getRGB function returns an int value with the sum of Red Blue and Green, so we are comparing integers not objects.




回答3:


Check this link.
How to match similar colours in Java using getRGB
You can find about colour similarity in this topic.



来源:https://stackoverflow.com/questions/15262258/how-could-i-compare-colors-in-java

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!