vote up 7 vote down star
5

I'm writing a java game and I want to implement a power meter for how hard you are going to shoot something.

I need to write a function that takes a int between 0 - 100, and based on how high that number is, it will return a color between Green (0 on the power scale) and Red (100 on the power scale).

Similar to how volume controls work:
alt text

What operation do I need to do on the Red, Green, and Blue components of a color to generate the colors between Green and Red?

So, I could run say, getColor(80) and it will return an orangish color (its values in R, G, B) or getColor(10) which will return a more Green/Yellow rgb value.

I know I need to increase components of the R, G, B values for a new color, but I don't know specifically what goes up or down as the colors shift from Green-Red.


Progress:

I ended up using HSV/HSB color space because I liked the gradiant better (no dark browns in the middle).

The function I used was (in java):

public Color getColor(double power)
{
    double H = power * 0.4; // Hue (note 0.4 = Green, see huge chart below)
    double S = 0.9; // Saturation
    double B = 0.9; // Brightness

    return Color.getHSBColor((float)H, (float)S, (float)B);
}

Where "power" is a number between 0.0 and 1.0. 0.0 will return a bright red, 1.0 will return a bright green.

Java Hue Chart:
alt text

Thanks everyone for helping me with this!

flag

63% accept rate

7 Answers

vote up 10 vote down check

This should work - just linearly scale the red and green values. Assuming your max red/green/blue value is 255, and n is in range 0-100

R=(255*n)/100
G=(255*(100-n))/100; 
B=0

(Amended for integer maths, tip of the hat to Ferrucio)

Another way to do would be to use a HSV colour model, and cycle the hue from 0 degrees (red) to 120 degrees (green) which whatever saturation and value suited you. This should give a more pleasing gradient.

Here's a demonstration of each technique - top gradient uses RGB, bottom uses HSV:

alt text

link|flag
If R, G, B and n are integer types, make sure you re-write those expressions to do the multiplication first or you won't get smooth transitions. i.e. R=(255*n)/100 – Ferruccio Dec 4 '08 at 11:19
It's much, much better to do this in HSV space. – DJClayworth Dec 4 '08 at 22:31
@DJClayworth, yea I went with HSV. – Simucal Jan 14 '09 at 6:59
+1; I was going to ask a new question about how to improve a color algorithm i have for coloring a bar chart in HTML/PHP... SO suggested this question as similar and your answer helped me fix the issue without having to ask the question! Thanks! – beggs Jul 30 at 3:49
vote up 4 vote down

Off the top of my head, here is the green-red hue transition in HSV space, translated to RGB:

blue = 0.0
if 0<=power<0.5:        #first, green stays at 100%, red raises to 100%
    green = 1.0
    red = 2 * power
if 0.5<=power<=1:       #then red stays at 100%, green decays
    red = 1.0
    green = 1.0 - 2 * (power-0.5)

The red, green, blue values in the above example are percentages, you'd probably want to multiply them by 255 to get the most used 0-255 range.

link|flag
vote up 2 vote down

I have previously asked the same (extremely similar) question here:

http://stackoverflow.com/questions/168838/color-scaling-function

link|flag
vote up 2 vote down

Linearly interpolating between green and red almost should work, except that in the middle there will be muddy brown color.

The most flexible and best looking solution is to have an image file somewhere that has the exact color ramp you want. And then lookup the pixel value in there. This has the flexibility that you can tweak the gradient to be just right.

If you still want to do it from code, then it's probably best to interpolate between green and yellow colors in the left side, and between yellow and red on the right side. In RGB space, green is (R=0, G=255, B=0), yellow is (R=255, G=255, B=0), red is (R=255, G=0, B=0) - this is assuming each color component goes from 0 to 255.

link|flag
vote up 0 vote down

If I were asked to do this, could you not generate a color gradient?

I know in C# you can quite easily, then just access a color part way through the gradient. Is this possible in JAVA?

link|flag
Nice to know how to do it yourself though – Paul Dixon Dec 4 '08 at 11:08
This is true, altthough, this method could work for any color gradient without having to worry too much about the Gradient Stops. – TK Dec 4 '08 at 11:14
vote up 0 vote down

You need to linearly interpolate (LERP) the color components. Here's how it's done in general, given a start value v0, an end value v1 and the required ratio (a normalized float between 0.0 and 1.0):

v = v0 + ratio * (v1 - v0)

This gives v0 when ratio is 0.0, v1 when ratio is 1.0, and everything between in the other cases.

You can do this either on the RGB components, or using some other color scheme, like HSV or HLS. The latter two will be more visually pleasing, since they work on hue and brightness compoments that map better to our color perception.

link|flag
vote up 0 vote down

i need to write a program that produces a set of colors that are linearly interploated between any two positions in HLS space? can someone please help me with this please?

link|flag
i need the program to be implemented in C/C++.. – kunal Nov 8 at 14:53

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.