Hi jc1,
Here is my try
Quote:
Originally Posted by jc1
1. Are RGB values and Tone values being used interchangeably?
|
AFAIK they are linked up to each other but not interchangeable. Tone value just indicates the luminance (light/dark), whereas RGB contains both color information and luminance information.
Quote:
Originally Posted by jc1
2. How is Brightness related to RGB values? For that matter, is RGB (130,130,130) brighter than RGB (127,127,127)?
|
Yes, RGB (130,130,130) is a bit brighter than RGB (127,127,127). On a 8 bit image, you have 255 tone steps for each channel (R= Red, G=Green, B=Blue channel) from 0 = black to 255 = white.
In your example RGB (130,130,130) indicates a lighter grey colour than RGB (127,127,127). So you see, if all color tone value are equal, you will get a grey color.
To express in another way, the color details are containing in the relation of these 3 RGB values. For example pure red will have (255,0,0) as RGB value. In theory all red tones are ranging from (1-255, 0,0), green tones (0, 1-255, 0) and blue tones (0,0, 1-255)...
Hope I could help a bit.
Hoang-Tran