HSV COLOR SPACE


The 'HSV' (Hue, Saturation, Value) model, also known as 'HSB' (Hue, Saturation, Brightness), defines a color space in terms of three constituent components:
Hue scale


Hue, the color type (such as red, blue, or yellow):


★ Ranges from 0–360 in most applications. Each value corresponds to one color. Examples: 0 is red, 45 is a shade of orange and 55 is a shade of yellow.

Saturation, the intensity of the color:


★ Ranges from 0–100%. 0 means no color, i.e., a shade of grey between black and white. 100 means intense color.


★ Also sometimes called the "purity" by analogy to the colorimetric quantities excitation purity and colorimetric purity.

Value, the brightness of the color:


★ Ranges from 0–100%. 0 is always black. Depending on the saturation, 100 may be white or a more or less saturated color.
The HSV model was created in 1978 by Alvy Ray Smith. It is a nonlinear transformation of the RGB color space, and may be used in color progressions. Note that HSV and HSB are the same, but HSL is different.
The definition of the HSV color model is not device independent. HSV is only defined relative to RGB intensities—without physical definitions of their chromaticities and white point. For accurate and device independent representation, use CIE L
★ a
★ b
or another CIE-based color model.

Contents
Visualization of HSV
Varying one component
Neighborhood of hues
HSV and color perception
Transformation between HSV and RGB
From RGB to HSV
From HSV to RGB
Complementary colors
References
See also
External Links

Visualization of HSV


An HSV color wheel allows the user to quickly select a multitude of colors.

Time-varied representation of the HSV color wheel.

The HSV model is commonly used in computer graphics applications. In various application contexts, a user must choose a color to be applied to a particular graphical element. When used in this way, the HSV color wheel is often used. In it, the hue is represented by a circular region; a separate triangular region may be used to represent saturation and value. Typically, the vertical axis of the triangle indicates saturation, while the horizontal axis corresponds to value. In this way, a color can be chosen by first picking the hue from the circular region, then selecting the desired saturation and value from the triangular region.
The conical representation of the HSV model is well-suited to
visualizing the entire HSV color space in a single object.

Time-varied representation of the HSV cone.

Another visualization method of the HSV model is the cone. In this representation, the hue is depicted as a three-dimensional conical formation of the color wheel. The saturation is represented by the distance from the center of a circular cross-section of the cone, and the value is the distance from the pointed end of the cone. Some representations use a hexagonal cone, or ''hexcone'', instead of a circular cone. This method is well-suited to visualizing the entire HSV color space in a single object; however, due to its three-dimensional nature, it is not well-suited to color selection in two-dimensional computer interfaces.
The cylindrical representation of the HSV model might be considered the most mathematically accurate model of the HSV color space.

Time-varied representation of the HSV cylinder.

The HSV color space could also be visualized as a cylindrical object; similar to the cone above, the hue varies along the outer circumference of a cylinder, with saturation again varying with distance from the center of a circular cross-section. Value again varies from top to bottom. Such a representation might be considered the most mathematically accurate model of the HSV color space; however, in practice the number of visually distinct saturation levels and hues decreases as the value approaches black. Additionally, computers typically store RGB values with a limited range of precision; the constraints of precision, coupled with the limitations of human color perception, make the cone visualization more practical in most cases.
Varying one component

A chart can be used to view precisely the effect of varying levels for hue, saturation or value.
Chart of increasing Saturation for three Value levels.

Chart of increasing Value for three Saturation levels.

Neighborhood of hues

3x3x3 Hue Neighborhood
Another way to view varying levels is to show a set of colors near one another, varying slightly in hue, saturation, and value. Note the image has 27 close shades of orange, sorted by luma, spiraling inward to the brightest point. The small center blocks are the same set of colors sorted in a more linear arrangement.

HSV and color perception



Artists sometimes prefer to use the HSV color model over alternative models such as RGB or CMYK, because of its similarities to the way humans tend to perceive color. RGB and CMYK are ''additive'' and ''subtractive'' models, respectively, defining color in terms of the combination of primaries, whereas HSV encapsulates information about a color in terms that are more familiar to humans: ''What color is it? How vibrant is it? How light or dark is it?'' The HSL color space is similar and arguably even better than HSV in this respect.
The HSV tristimulus space does not technically support a one-to-one mapping to physical power spectra as measured in radiometry.
Thus it is not generally advisable to try to make direct comparisons between HSV coordinates and physical light properties such as wavelength or amplitude. However, if physical intuitions are indispensable, it 'is' possible to translate HSV coordinates into ''pseudo-physical'' properties using the psychophysical terminology of ''colorimetry'' as follows:

★ ''Hue'' specifies the ''dominant wavelength'' of the color, except in the range between red and indigo (somewhere between 240 and 360 degrees) where the Hue denotes a position along the line of pure purples

★ If the ''hue'' perception were recreated, actually using a monochromatic, pure spectral color at the dominant wavelength, the ''desaturation'' would be roughly analogous to an applied frequency spread around the dominant wavelength or alternatively the amount of equal-power (i.e., white) light added to the pure spectral color.

★ The ''value'' is roughly analogous to the total power of the spectrum, or the maximum amplitude of the light waveform. However, it should be obvious from the equations below that ''value'' is actually closer to the power of the greatest spectral component (the statistical ''mode'', not the cumulative power across the distribution).

Transformation between HSV and RGB


An illustration of the relationship between HSV and RGB color spaces.

H in left[ 0, 360
ight)
S, V, R, G, B in left[ 0, 1
ight]

From RGB to HSV

Let ''MAX'' equal the maximum of the (''R'', ''G'', ''B'') values, and ''MIN'' equal the minimum of those values.

H =
egin{cases}
mbox{undefined}, & mbox{if } mathit{MAX} = mathit{MIN} \
60^circ imes rac{G - B}{mathit{MAX} - mathit{MIN}} + 0^circ, & mbox{if } mathit{MAX} = R \ &mbox{and } G ge B \
60^circ imes rac{G - B}{mathit{MAX} - mathit{MIN}} + 360^circ, & mbox{if } mathit{MAX} = R \ &mbox{and } G < B \
60^circ imes rac{B - R}{mathit{MAX} - mathit{MIN}} + 120^circ, & mbox{if } mathit{MAX} = G \
60^circ imes rac{R - G}{mathit{MAX} - mathit{MIN}} + 240^circ, & mbox{if } mathit{MAX} = B
end{cases}

S =
egin{cases}
0, & mbox{if } mathit{MAX} = 0 \
1 - rac {mathit{MIN}} {mathit{MAX}}, & mbox{otherwise}
end{cases}

V = mathit{MAX} ,
From HSV to RGB

{|
|-
|align = "right"|H_i = ||align = "left"|leftlfloor { H over 60 }
ight
floormod 6
|-
|align = "right"|f = ||align = "left"|{ H over 60 } - H_i
|-
|align = "right"|p = ||align = "left"|V ( 1 - S ) ,
|-
|align = "right"|q = ||align = "left"|V ( 1 - f S ) ,
|-
|align = "right"|t = ||align = "left"|V ( 1 - ( 1 - f ) S ) ,
|}
{|
|-
|align = "right"|mbox{if } H_i = 0
ightarrow ||align = "left"|R = V,||align = "left"| G = t,||align = "left"| B = p
|-
|align = "right"|mbox{if } H_i = 1
ightarrow ||align = "left"|R = q,||align = "left"| G = V,||align = "left"| B = p
|-
|align = "right"|mbox{if } H_i = 2
ightarrow ||align = "left"|R = p,||align = "left"| G = V,||align = "left"| B = t
|-
|align = "right"|mbox{if } H_i = 3
ightarrow ||align = "left"|R = p,||align = "left"| G = q,||align = "left"| B = V
|-
|align = "right"|mbox{if } H_i = 4
ightarrow ||align = "left"|R = t,||align = "left"| G = p,||align = "left"| B = V
|-
|align = "right"|mbox{if } H_i = 5
ightarrow ||align = "left"|R = V,||align = "left"| G = p,||align = "left"| B = q
|}
In computer graphics, sometimes each HSV and RGB parameter is represented by an integer from 0 to 255 instead of a real number. In this case, the transforms do not cover all the points in the target space and some distortion is caused by rounding. For example:

★ the HSV point (0, 255, 255) is mapped to the RGB point (255, 0, 0) and

★ the HSV point (1, 255, 255) is mapped to the RGB point (255, 6, 0),
but no HSV points map to the 5 RGB points in between: (255, k, 0), k = 1 to 5.

Complementary colors


Main articles: Complementary color

We regard two colors as complementary if when mixed together they produce a shade of grey. Given a color (H, S, V) in HSV color space, there exists a complement (H', S', V') such that when (H, S, V) and (H', S', V') are mixed in equal proportions, the saturation of the resulting color is 0. Then,
{|
|-
|align = "right"|H^prime = ||align = "left"| egin{cases}H - 180, & mbox{if } H ge 180 \H + 180, & mbox{if } H < 180 end{cases}
|-
|align = "right"|S^prime = ||align = "left"|{VS over V(S - 1) + 1}
|-
|align = "right"|V^prime = ||align = "left"|V(S - 1) + 1 ,
|}

References



★ Raphael Gonzalez, Richard E. Woods (2002) ''Digital Image Processing,'' 2nd ed. Prentice Hall Press, ISBN 0-201-18075-8, p. 295.

★ Charles Poynton. Frequently-Asked Questions about Color. 1997.

★ Donald Hearn, M. Pauline Baker (1986) ''Computer Graphics.'' Prentice Hall International, ISBN 0-13-165598-1, pp. 302-205.

See also



Colorimetry

Dominant wavelength

Saturation

External Links



C++ code for RGB and HSV conversion

Demonstrative color conversion applet

Skin and non skin colors in the Hue-Saturation plane of HSV color space

This article provided by Wikipedia. To edit the contents of this article, click here for original source.

psst.. try this: add to faves