8.31. Desaturate

By using the Desaturate command, you can convert all of the colors on the active layer to corresponding shades of gray. This differs from converting the image to grayscale in two respects. First, it only operates on the active layer and second, the colors on the layer are still RGB values with three components, with R=G=B, which makes gray. This means that you then can paint on the layer, or individual parts of it, using non-gray colors.

[注意] 注意

This command only works on layers of RGB images. If the image is in Grayscale or Indexed mode, it can do nothing.

8.31.1. Activating the Command

You can find this command through ColorsDesaturateDesaturate…

8.31.2. Options

图 16.209. The Desaturate option dialog

The “Desaturate” option dialog

Mode: Five options are available for converting from color to black and white:

Luminance

The shades of gray will be calculated using linearized sRGB as

Luminance = (0.22 × R) + (0.72 × G) + (0.06 × B)
Luma

The shades of gray will be calculated using non-linearized sRGB

Luma = (0.22 × R) + (0.72 × G) + (0.06 × B)
Lightness (HSL)

The shades of gray will be calculated as

Lightness (HSL) = ½ × (max(R,G,B) + min(R,G,B))
Average (HSI Intensity)

The shades of gray will be calculated as

Average (HSI Intensity) = (R + G + B) ÷ 3
Value (HSV)

The shades of gray will be calculated as

Value (HSV) = max(R,G,B)

图 16.210. Using the five modes to convert two very different color images to black and white

Using the five modes to convert two very different color images to black and white

Original image

Using the five modes to convert two very different color images to black and white

Original image


      

Using the five modes to convert two very different color images to black and white

Luminance applied

Using the five modes to convert two very different color images to black and white

Luminance applied


      

Using the five modes to convert two very different color images to black and white

Luma applied.

Using the five modes to convert two very different color images to black and white

Luma applied.


      

Using the five modes to convert two very different color images to black and white

Lightness (HSL) applied.

Using the five modes to convert two very different color images to black and white

Lightness (HSL) applied.


      

Using the five modes to convert two very different color images to black and white

Average (HSI Intensity) applied.

Using the five modes to convert two very different color images to black and white

Average (HSI Intensity) applied.


      

Using the five modes to convert two very different color images to black and white

Value (HSV) applied.

Using the five modes to convert two very different color images to black and white

Value (HSV) applied.


8.31.3. Comparing results from using different options for converting from color to black and white:

  1. The degree and direction from which the various ways to convert an image to black and white diverge from a straight Luminance conversion to black and white depends on:

    • The conversion method you choose.

    • The RGB color space in which the conversion is done.

    • How saturated the colors in the original image happen to be, with more saturated starting colors (such as the red globe and the bright yellow sunflower) producing greater amounts of deviation from a straight Luminance conversion.

    • The hues (for example yellows vs reds) of the various saturated colors in an image also make a difference.

    • Being the maximum of the RGB channel values for each pixel, an HSV Value conversion to black and white is always lighter than the original color image, and also lighter than all the other ways to convert to black and white.

  2. Comparing the red globe to the yellow sunflower:

    • For the red globe Lightness (HSL) produces a result very similar to Luminance, and Luma produces a conversion that is much darker.

    • For the sunflower, Luma produces a result very similar to Luminance, and Lightness (HSL) produces a conversion that is much darker.

    • Notice that the less saturated parts of each image look more or less the same, regardless of which method is chosen for converting from color to black and white.

8.31.4. More information about the five options for converting from color to black and white:

  1. More information about Luminance:

    • "Luminance" is the only physically meaningful way to convert a color image to black and white, as the resulting black and white image has the same relative luminance (reflects the same percentage of light from the various shades of gray) as the colors in the original color image.

    • Luminance must be calculated using linearized RGB values.

    • For convenience we say "Luminance", but what we really mean is "Relative Luminance". For more information, see Relative Luminance and CIE 1931 [XYZ] color space.

    • GIMP 2.10 uses hard-coded sRGB values to do Luminance conversions to black and white. "Future GIMP" will support correct conversions for images in other color spaces.

  2. More information about Luma:

    • "Luma" is what you get if you use the formula for Luminance on RGB values that haven't been properly linearized. Luma corresponds to GIMP 2.8's "Luminosity" method of converting to black and white.

    • Compared to GIMP 2.8, GIMP 2.10's "Luma" option uses slightly different multipliers. Unlike the GIMP 2.8 multipliers, the GIMP 2.10 multipliers have been properly Bradford-adapted from D65 to D50, which is required for use in an ICC profile color-managed editing application (at least until the next version of the ICC specs is released and people figure out how to deal with the new freedom to use non-D50 reference white points).

    • GIMP 2.10 uses hard-coded sRGB values to do Luma conversions to black and white. "Future GIMP" will support correct conversions for images in other color spaces.

  3. More information about Lightness, Average, and Value:

    The "Lightness (HSL)", "Average (HSI Intensity)", and "Value (HSV)" ways to convert a color image to black and white use color space models that were invented for fast processing on consumer-grade computers from the 1990s. For details see HSL and HSV, paying particular attention to the section on Disadvantages.

  4. In case you are wondering why LAB Lightness is not among the options for converting an RGB image to black and white, a properly calculated conversion from RGB to LAB Lightness, and then back to RGB, produces exactly the same result as the Luminance conversion to black and white. Here is why:

    • In the XYZ color space, Y is Luminance. So if you convert a color RGB image to XYZ, the "Y" of XYZ is the same number as the R=G=B values that you get when you calculate RGB Luminance.

    • LAB is a perceptually uniform transform of XYZ. If you convert from RGB to XYZ and then to LAB, and set A=B=0.0 (or 0.5 for image editors that put the midpoint of the A and B axes as 0.5 instead of at 0.0), and then convert back to XYZ, the X and Z values will change, but Y will not change.

    Tutorials that produce anything other than Relative Luminance when converting an RGB image to black and white using LAB Lightness, very sadly are trading on various mathematical mistakes in the conversion routines.