vote up 1 vote down star
4

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.

flag
Perceived brightness is what I think I'm looking for, thank you. – robmerica Feb 27 at 19:34

7 Answers

vote up 11 vote down check

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*blue)
  • Luminance (perceived option 2, slower to calculate): sqrt( 0.241*R^2 + 0.691*G^2 + 0.068*B^2 )
link|flag
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 at 19:28
Yes, it all depends on the application. All these models including human subjective perception... – unknown (google) Feb 27 at 19:34
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 at 19:46
Where'd ya get those formulas? – bobobobo Oct 5 at 18:31
For the first two the source is in the other answers. As for the final one - I think it was from the lectures on television or graphics... – unknown (google) Oct 6 at 8:45
vote up 10 vote down

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
link|flag
1  
I like that you put in precise values, but also included a quick "close enough" type shortcut. +1. – Beska Feb 27 at 20:39
vote up 3 vote down

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.

link|flag
vote up 2 vote down

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

link|flag
vote up 2 vote down

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.

link|flag
vote up 1 vote down

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.

link|flag
vote up 0 vote down

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.

link|flag

Your Answer

Get an OpenID
or

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