JA EN

Color Model

A mathematical framework for representing colors as numerical values. Multiple models such as RGB, CMYK, and HSV exist for different applications in digital imaging and print.

A color model is a mathematical system describing colors as ordered tuples of numbers. Each model defines a coordinate space with three or four axes (channels), where every point corresponds to a specific color. Image processing workflows routinely convert between models.

Converting between models involves matrix multiplications and nonlinear transfer functions. For example, transforming sRGB to Lab requires inverse gamma correction to linear RGB, a matrix multiply into CIE XYZ, and a cube-root transformation into Lab. When source colors fall outside the destination gamut, clipping or gamut mapping algorithms remap them to reproducible colors.

Related Terms

Related Articles