Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm looking for some kind of formula or algorithm to determine the brightness of a color given the RGB values. I know it can't be as simple as adding the RGB values together and having higher sums be brighter, but I'm kind of at a loss as to where to start.

share|improve this question
1  
Perceived brightness is what I think I'm looking for, thank you. – robmerica Feb 27 '09 at 19:34

11 Answers

up vote 109 down vote accepted

Do you mean brightness? Perceived brightness? Luminance?

  • Luminance (standard, objective): (0.2126*R) + (0.7152*G) + (0.0722*B)
  • Luminance (perceived option 1): (0.299*R + 0.587*G + 0.114*B)
  • Luminance (perceived option 2, slower to calculate): sqrt( 0.241*R^2 + 0.691*G^2 + 0.068*B^2 )
share|improve this answer
1  
Note that both of these emphasize the physiological aspects: the human eyeball is most sensitive to green light, less to red and least to blue. – Bob Cross Feb 27 '09 at 19:28
Yes, it all depends on the application. All these models including human subjective perception... – Anonymous Feb 27 '09 at 19:34
2  
Note also that all of these are probably for linear 0-1 RGB, and you probably have gamma-corrected 0-255 RGB. They are not converted like you think they are. – alex strange Feb 27 '09 at 19:46
25  
Where'd ya get those formulas? – bobobobo Oct 5 '09 at 18:31
5  
+1 for implying that there are multiple solutions. -2 for not providing any references or rationales behind the ones you list. – endolith May 19 '12 at 0:14
show 4 more comments

I think what you are looking for is the RGB -> Luma conversion formula.

Photometric/digital ITU-R:

Y = 0.2126 R + 0.7152 G + 0.0722 B

Digital CCIR601 (gives more weight to the R and B components):

Y = 0.299 R + 0.587 G + 0.114 B

If you are willing to trade accuracy for perfomance, there are two approximation formulas for this one:

Y = 0.33 R + 0.5 G + 0.16 B

Y = 0.375 R + 0.5 G + 0.125 B

These can be calculated quickly as

Y = (R+R+B+G+G+G)/6

Y = (R+R+R+B+G+G+G+G)>>3
share|improve this answer
9  
I like that you put in precise values, but also included a quick "close enough" type shortcut. +1. – Beska Feb 27 '09 at 20:39
How come your 'calculated quickly' values don't include blue in the approximation at all? – Jonathan Dumaine Dec 18 '10 at 1:01
2  
@Jonathan Dumaine - the two quick calculation formulas both include blue - 1st one is (2*Red + Blue + 3*Green)/6, 2nd one is (3*Red + Blue + 4*Green)>>3. granted, in both quick approximations, Blue has the lowest weight, but it's still there. – Franci Penov Dec 18 '10 at 1:24
Hmm don't know why I didn't see the B's in there before. – Jonathan Dumaine Dec 26 '10 at 3:52
12  
@JonathanDumaine That's because the human eye is least perceptive to Blue ;-) – Christopher Oezbek May 24 '12 at 16:39
show 1 more comment

To add what all the others said:

All these equations work kinda well in practice, but if you need to be very precise you have to first convert the color to linear color space (apply inverse image-gamma), do the weight average of the primary colors and - if you want to display the color - take the luminance back into the monitor gamma.

The luminance difference between ingnoring gamma and doing proper gamma is up to 20% in the dark grays.

share|improve this answer
See the answer I posted. It shows exactly how to do that. – Jive Dadson Mar 22 at 19:52

I found this script (written in C#) that does an excellent job of calculating the "brightness" of a color. In this scenario, the script is trying to determine whether to put white or black text over the color.

share|improve this answer

The HSV colorspace should do the trick, see the wikipedia article depending on the language you're working in you may get a library conversion .

H is hue which is a numerical value for the color (i.e. red, green...)

S is the saturation of the color, i.e. how 'intense' it is

V is the 'brightness' of the color.

share|improve this answer
3  
Problem with the HSV color space is that you can have the same saturation and value, but different hue's, for blue and yellow. Yellow is much brighter than blue. Same goes for HSL. – Ian Boyd May 6 '10 at 14:22

RGB Luminance value = 0.3 R + 0.59 G + 0.11 B

http://www.scantips.com/lumin.html

If you're looking for how close to white the color is you can use Euclidean Distance from (255, 255, 255)

I think RGB color space is perceptively non-uniform with respect to the L2 euclidian distance. Uniform spaces include CIE LAB and LUV.

share|improve this answer

Please define brightness. If you're looking for how close to white the color is you can use Euclidean Distance from (255, 255, 255)

share|improve this answer

The 'V' of HSV is probably what you're looking for. MATLAB has an rgb2hsv function and the previously cited wikipedia article is full of pseudocode. If an RGB2HSV conversion is not feasible, a less accurate model would be the grayscale version of the image.

share|improve this answer

It is necessary to apply an inverse of the gamma function for the color space before calculating the inner product. Then you apply the gamma function to the reduced value. Failure to incorporate the gamma function can result in errors of up to 20%.

For typical computer stuff, the color space is sRGB. The right numbers for sRGB are approx. 0.21, 0.72, 0.07. Gamma for sRGB is a composite function that approximates exponentiation by 1/2.2. Here is the whole thing in C++.

// sRGB luminance(Y) values
const double rY = 0.212655;
const double gY = 0.715158;
const double bY = 0.072187;

// Inverse of sRGB "gamma" function. (approx 2.2)
double inv_gam_sRGB(int ic) {
    double c = ic/255.0;
    if ( c <= 0.04045 )
        return c/12.92;
    else 
        return pow(((c+0.055)/(1.055)),2.4);
}

// sRGB "gamma" function (approx 2.2)
int gam_sRGB(double v) {
    if(v<=0.0031308)
        v *= 12.92;
    else 
        v = 1.055*pow(v,1.0/2.4)-0.055;
    return int(v*255+.5);
}

// GRAY VALUE ("brightness")
int gray(int r, int g, int b) {
    return gam_sRGB(
            rY*inv_gam_sRGB(r) +
            gY*inv_gam_sRGB(g) +
            bY*inv_gam_sRGB(b)
    );
}
share|improve this answer
Why did you use a composite function to approximate the exponent? Why not just do a direct calculation? Thanks – JMD Mar 21 at 16:21
That is just the way sRGB is defined. I think the reason is that it avoids some numerical problems near zero. It would not make much difference if you just raised the numbers to the powers of 2.2 and 1/2.2. – Jive Dadson Mar 22 at 19:27

Interestingly, this formulation for RGB=>HSV just uses v=MAX3(r,g,b). In other words, you can use the maximum of (r,g,b) as the V in HSV.

I checked and on page 575 of Hearn & Baker this is how they compute "Value" as well.

From Hearn&Baker pg 319

share|improve this answer

This link explains everything in depth, including why those multiplier constants exist before the R, G and B values.

Edit: It has an explanation to one of the answers here too (0.299*R + 0.587*G + 0.114*B)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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