Dog Breeds Information and More
  HLS color space - Dog Breeds Facts and Information Dog Breeds Selector A to Z dog breeds Forums

 
Dog names
Dog training
Toy dogs
Intelligence
Dog health
Dog worship
Ticks

 
Golden Retriever
Labrador Retriever
Jack Russell
 
Find a Breed
 
Dog Breeds Encyclopedia
 

HLS color space

The HLS color space, also called HSL, stands for Hue, Saturation, Lightness (also Luminance or Luminosity). While HSV (Hue, Saturation, Value) can be viewed graphically as a color cone or hexcone, HSL is drawn as a double cone or double hexcone. Both systems are non-linear deformations of the RGB colour cube. The two apexes of the HLS double hexcone correspond to black and white. The angular parameter corresponds to hue, distance from the axis corresponds to saturation, and distance along the black-white axis corresponds to lightness.

Contents

Converting from RGB

Both the HSL color space and the HSV color space have a common definition of hue, but not saturation and lightness/value.

HSL:

saturation = max{R,G,B} - min{R,G,B}
lightness = \frac{\max \{R,G,B\} + \min \{R,G,B\}}{2}

HSV:

saturation = \frac{\max\{R,G,B\} - \min\{R,G,B\}}{\max\{R,G,B\}}
value = max{R,G,B}

Comparison of HSL and HSV

HSL is similar to HSV but better reflects the intuitive notion of “saturation” and “lightness” as two independent parameters, and is therefore more suitable for use by artists. The CSS3 specification from the W3C states, "Advantages of HSL are that it is symmetrical to lightness and darkness (which is not the case with HSV for example)..." This means that:

  • In HSL, the Saturation component always goes from fully saturated color to the equivalent gray (in HSV, with V at maximum, it goes from saturated color to white, which may be considered counterintuitive).
  • The Lightness in HSL always spans the entire range from black through the chosen hue to white (in HSV, the V component only goes half that way, from black to the chosen hue).

In software, a hue-based color model (HSV or HSL) is usually presented to the user in the form of a linear or circular hue chooser and a two-dimensional area (usually a square or a triangle) where you can choose saturation and value/lightness for the selected hue. With this representation, the difference between HSV or HSL is irrelevant. However, many programs also let you select a color via linear sliders or numeric entry fields, and for those controls, usually either HSL or HSV (not both) are used. HSV is traditionally more common. Here are some examples:

Examples

RGB HSL HSV Result
(1, 0, 0) (0°, 1, 0.5) (0°, 1, 1)                   
(0.5, 1, 0.5) (120°, 0.5, 0.75) (120°, 0.5, 1)                   
(0, 0, 0.5) (240°, 0.5, 0.5) (240°, 1, 0.5)    

See also

External link

The contents of this article are licensed from Wikipedia.org under the
GNU Free Documentation License. How to see transparent copy