JA EN

HSV

A color model that represents colors using hue, saturation, and value axes. It aligns with human color perception and is widely used in color pickers and image adjustment tools.

HSV (Hue, Saturation, Value) is a color model that describes colors using three perceptually intuitive attributes. Proposed by Alvy Ray Smith in 1978, it reinterprets the RGB cube as a cylindrical coordinate system. HSV is the standard model behind color pickers and is extensively used in computer vision for color-based segmentation.

A closely related model is HSL (Hue, Saturation, Lightness). In HSL, pure colors appear at L=50%, and L=100% always yields white. CSS natively supports HSL through the hsl() function, making it convenient for defining color palettes with predictable lightness relationships.

In programming, RGB-to-HSV conversion is common. OpenCV provides cv2.cvtColor(img, cv2.COLOR_BGR2HSV) for this purpose. A typical technique involves thresholding specific hue ranges to create masks for object detection, such as isolating red signs or green vegetation.

Related Terms

Related Articles