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.
|
|
Do you mean brightness? Perceived brightness? Luminance?
|
|||||||||||||||||||
|
|
I think what you are looking for is the RGB -> Luma conversion formula. Photometric/digital ITU-R:
Digital CCIR601 (gives more weight to the R and B components):
If you are willing to trade accuracy for perfomance, there are two approximation formulas for this one:
These can be calculated quickly as
|
|||||||||||||||||
|
|
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. |
|||
|
|
|
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. |
||||
|
|
|
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. |
|||||
|
|
RGB Luminance value = 0.3 R + 0.59 G + 0.11 B http://www.scantips.com/lumin.html
I think RGB color space is perceptively non-uniform with respect to the L2 euclidian distance. Uniform spaces include CIE LAB and LUV. |
|||
|
|
|
Please define brightness. If you're looking for how close to white the color is you can use Euclidean Distance from (255, 255, 255) |
|||
|
|
|
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. |
|||
|
|
|
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++.
|
|||||
|
|
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.
|
|||
|
|
|
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) |
||||
|
|

