• Color Adjustment
  • Sample Adjustments
  • Browser Support

Tutorial: Color Adjustment

Pictures may be too bright, too dark, or off-color. Adjusting the HSV color space can sometimes reveal details.

HSV Color space

When we look at pictures, we look at colors. And when we modify pictures, we modify colors. Even though the colors may visually look similar, there can be enough minor color differences to identify potential alterations or extract useful information.

There are many different ways to represent color. Typically, colors are represented by red, green, and blue components (RGB). The RGB color space defines a cube that contains all of the colors. This represents the colors as stored and displayed by the computer. RGB is an additive color space; it is used for systems that emit colors. (If you want more red, then you emit, or add in, more red.)

The inverted RGB color space is cyan, magenta, and yellow (CMY). This subtractive color space is ideal for materials that absorb and reflect light, such as paper and fabrics. If you want an image printed on paper to appear more red, then you place more green and blue absorbing pigments (magenta and yellow), permitting only red to reflect. Printing often includes a common color called a key (K) to reduce the amount of ink necessary for printing. For example, if the key color is black, then CMYK can combine black with red to make a dark red rather than injecting a large amount of magenta and yellow.

While RGB (and by inverting, CMYK) can be used to represent any color, it actually has a distance problem. Two colors may be visually similar but geometrically distant. If you only care about storing colors, then this is a non-issue. However, if you are interested in the relationship between colors, then this is a concern.


RGB

HSV
The HSV (Hue, Saturation, and intensity Value) color space addresses the relationship issue.
  • Hue (H). Identifies the color shading. Visually, purple and orange are both similar to red, so they are adjacent in the hue shading. In contrast, green and blue are visually different from red, so they are far from the red hue. H defines a 360° rotational angle that cycles through the rainbow.
  • Saturation (S). Identifies the amount of color, from 0% to 100%. Very little color will appear pale or white, while a high saturation value indicates very intense colors. 0% is along the center axis of the HSV cone, while 100% is along the cone's edge.
  • Intensity Value (V). Determines the color's brightness, from 0% to 100%; V is the distance from cone's point (0%) to the center of the widest circle (100%).
While RGB is represented as a three-dimensional cube, HSV is represented as a cone with darker colors at the narrow end. With HSV, all dark colors are visually the same. Similarly, colors without much saturation all appear as shades of gray.

HSV's color relationships are similar to our visual interpretation. For example, really dark (nearly black) red is visually indistinguishable from really dark blue. In RGB, dark red (1,0,0) and dark blue (0,0,1) are sqrt(2)=1.414 units apart. Therefore, the colors are different. However in HSV, they are much closer together: [0°,100%,0%] to [240°,100%,0%] has a distance of 0 units ([100%,0%] to [100%,0%]) and only differ by the rotational angle (240°). Similarly, colors that are desaturated can appear to be nearly identical shades of gray, even if they are actually faintly colored.

NameRGBHSV
Faint Red(255,250,250)(0°, 2%, 100%)
Faint Green(250,255,250)(120°, 2%, 100%)
Color Distance7.07 units3.46 units
 
Gray Red(143,138,138)(0°, 3.5%, 56.1%)
Gray Green(138,143,138)(120°, 3.5%, 56.1%)
Color Distance7.07 units1.94 units

Using HSV, a color can be very intense (high saturation) and still appear dark (low V). As a visual example, consider a room with blue walls. When lit, it appears bright blue and areas in shadow appear as a darker blue. Any areas receiving almost no light appear black and indistinguishable from other very dark colors. Regardless of the lighting, the walls are still the same blue. In each case, the H and S values (that define "blue") do not change -- only the brightness intensity (V) differs.

Caveats

Color adjustments do not typically identify alterations and will not pull out fine details in every image. This analysis method is really only applicable on a case-by-case basis.
  • Although color adjustments may identify subtle color differences, it does not identify the cause of the difference. For example, a smudge on the camera's lens can appear as a visible blob after adjusting the colors.
  • Not every web browser supports color adjustments. If your browser does not support color adjustments, then you may need to download the source picture and use a drawing program to adjust the image.
  • Some drawing programs handle HSV adjustments differently. Most differences are in the scale factors and terminology. For example, the hue can be rotated 360 degrees. Both Gimp and Photoshop use a Hue range from -180° to +180°, while other systems use 0° to 360° (or 0° to 359° since 360° is the same as 0°). These are equivalent scaling systems, but they are a different numerical range. (To convert: anything above 180° should subtract 360. For example, 200° is the same as -160°.)

    Similarly, Gimp calls the light intensity (V) "lightness", while other applications call it "brightness". Gimp uses saturation and lightness scales from -100 to +100 with 0 as the normal, unaltered source. Other systems use a scale from 0% to 200% with 100% being normal. Both scales are equivalent, but users need to convert values for comparison.
  • Some drawing programs handle HSV adjustments incorrectly. For example, Adobe Photoshop CS5 has an option to rotate the hue. The hue's color key shown by Photoshop is incorrectly rotated by 180° (if 0° is in the middle, then red should be in the middle and not to the far left). Photoshop also performs a miscalculation when adjusting the saturation, causing wildly incorrect colors.
Color adjustments are one type of image enhancement method. The interpretation of results may be inconclusive. It is important to validate findings with other analysis techniques and algorithms.