vote up 5 vote down star

When converting from RGB to grayscale, it is said that specific weights to channels R, G, and B ought to be applied. These weights are: 0.2989, 0.5870, 0.1140.

It is said that the reason for this is different human perception/sensibility towards these three colors. Sometimes it is also said these are the values used to compute NTSC signal.

However, I didn't find a good reference for this on the web. What is the source of these values?

See also these previous questions: here and here.

flag

This has nothing to do with programming... – Seb Mar 26 at 19:41
2  
Yes it does. I do programming on RGB values all the time. Applying "real world" values to these calculations is very important if you want your app to be worth its salt. – Neil N Mar 26 at 19:44
Many programmers may not care and compute "wrong" grayscale pictures, but I do. – ypnos Mar 26 at 19:46
I'd agree it is coding related - defiantly an interesting and relevant problem if you're coding graphics. +1 as I'd like to know the answer myself – Cruachan Mar 26 at 19:47
RGB could be programming related, but I don't see any programming question here. I'd say this is more a "how-humans-work" question. – Seb Mar 26 at 19:57
show 1 more comment

4 Answers

vote up 2 vote down check

If you convert RGB -> grayscale with slightly different numbers / different methods, you won't see much difference at all on a normal computer screen under normal lighting conditions -- try it.

Here are some more links on color in general:

Wikipedia Luma

Bruce Lindbloom 's outstanding web site

chapter 4 on Color in the book by Colin Ware, "Information Visualization", isbn 1-55860-819-2; this long link to Ware in books.google.com may or may not work

cambridgeincolor : excellent, well-written "tutorials on how to acquire, interpret and process digital photographs using a visually-oriented approach that emphasizes concept over procedure"

Should you run into "linear" vs "nonlinear" RGB, here's part of an old note to myself on this. Repeat, in practice you won't see much difference.


RGB -> ^gamma -> Y -> L*

In color science, the common RGB values, as in html rgb( 10%, 20%, 30% ), are called "nonlinear" or Gamma corrected. "Linear" values are defined as

Rlin = R^gamma,  Glin = G^gamma,  Blin = B^gamma

where gamma is 2.2 for many PCs. The usual R G B are sometimes written as R' G' B' (R' = Rlin ^ (1/gamma)) (purists tongue-click) but here I'll drop the '.

Brightness on a CRT display is proportional to RGBlin = RGB ^ gamma, so 50% gray on a CRT is quite dark: .5 ^ 2.2 = 22% of maximum brightness. (LCD displays are more complex; furthermore, some graphics cards compensate for gamma.)

To get the measure of lightness called L* from RGB, first divide R G B by 255, and compute

Y = .2126 * R^gamma + .7152 * G^gamma + .0722 * B^gamma

This is Y in XYZ color space; it is a measure of color "luminance". (The real formulas are not exactly x^gamma, but close; stick with x^gamma for a first pass.)

Finally, L* = 116 * Y ^ 1/3 - 16 "... aspires to perceptual uniformity ... closely matches human perception of lightness." -- Wikipedia Lab color space

link|flag
Thank you very much for this comprehensive answer with a lot of citations as well! – ypnos Mar 27 at 15:50
vote up 4 vote down

Here's a paper on how these numbers (or similar ones) were derived:

http://www.cis.rit.edu/mcsl/research/broadbent/CIE1931_RGB.pdf

link|flag
vote up 4 vote down

Check out the Color FAQ for information on this. These values come from the standardization of RGB values that we use in our displays. Actually, according to the Color FAQ, the values you are using are outdated, as they are the values used for the original NTSC standard and not modern monitors.

link|flag
Thank you! That FAQ is really informative. – ypnos Mar 26 at 20:28
vote up 3 vote down

I found that this publication referenced in an answer to a previous similiar question (sorry I obviously didn't search for the right words before opening mine!) is very helpful:

http://www.cgg.cvut.cz/members/cadikm/color_to_gray_evaluation/

It shows 'tons' of different methods to generate grayscale images with different outcomes!

link|flag

Your Answer

Get an OpenID
or

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