JA EN

Gamma

An exponent defining the nonlinear relationship between input signal values and output luminance. Gamma correction ensures natural brightness perception on displays.

Gamma refers to the power-law exponent that describes the nonlinear relationship between encoded pixel values and the actual luminance produced by a display. CRT monitors naturally exhibited a response curve where output brightness was proportional to input voltage raised to approximately the 2.2 power. Gamma correction was introduced to compensate for this characteristic and ensure images appear as intended.

In image editing, gamma adjustment corresponds to raising or lowering the midtones on a tone curve. Increasing gamma brightens the image overall while decreasing it darkens the result. Web developers can apply gamma correction through CSS filter: brightness() or manual pixel manipulation via the Canvas API's ImageData interface.

Related Terms

Related Articles