JA EN

Interpolation

Mathematical methods for estimating new pixel values during image scaling, rotation, or warping. Balances quality against computational cost.

Interpolation is the mathematical process of estimating pixel values at non-integer coordinates during geometric transformations such as resizing, rotation, and distortion correction. Since digital images are discrete pixel grids, computing values between existing samples requires interpolation from surrounding pixels.

Common algorithms in order of quality:

Selection guidelines by use case:

CSS image-rendering controls browser interpolation: pixelated forces nearest-neighbour for retro pixel art display, while crisp-edges attempts to preserve edges without smoothing.

Related Terms

Related Articles