Bicubic interpolation
From Wikipedia, the free encyclopedia
In mathematics, bicubic interpolation is an extension of cubic interpolation for interpolating data points on a two dimensional regular grid. The interpolated surface is smoother than corresponding surfaces obtained by bilinear interpolation or nearest-neighbor interpolation. Bicubic interpolation can be accomplished using either Lagrange polynomials, cubic splines or cubic convolution algorithm.
In image processing, bicubic interpolation is often chosen over bilinear interpolation or nearest neighbor in image resampling, when speed is not an issue. Images resampled with bicubic interpolation are smoother and have fewer interpolation artifacts.
Contents |
[edit] Bicubic spline interpolation
Suppose the function values f and the derivatives fx, fy and fxy are known at the four corners (0,0), (1,0), (0,1), and (1,1) of the unit square. The interpolated surface can then be written
The interpolation problem consists of determining the 16 coefficients aij. Matching p(x,y) with the function values yields four equations,
- f(0,0) = p(0,0) = a00
- f(1,0) = p(1,0) = a00 + a10 + a20 + a30
- f(0,1) = p(0,1) = a00 + a01 + a02 + a03
Likewise, eight equations for the derivatives in the x-direction and the y-direction
- fx(0,0) = px(0,0) = a10
- fx(1,0) = px(1,0) = a10 + 2a20 + 3a30
- fx(0,1) = px(0,1) = a10 + a11 + a12 + a13
- fy(0,0) = py(0,0) = a01
- fy(1,0) = py(1,0) = a01 + a11 + a21 + a31
- fy(0,1) = py(0,1) = a01 + 2a02 + 3a03
And four equations for the cross derivative xy.
- fxy(0,0) = pxy(0,0) = a11
- fxy(1,0) = pxy(1,0) = a11 + 2a21 + 3a31
- fxy(0,1) = pxy(0,1) = a11 + 2a12 + 3a13
where the expressions above have used the following identities,
- .
This procedure yields a surface p(x,y) on the unit square which is continuous and with continuous derivatives. Bicubic interpolation on an arbitrarily sized regular grid can then be accomplished by patching together such bicubic surfaces, ensuring that the derivatives match on the boundaries.
If the derivatives are unknown, they are typically approximated from the function values at points neighbouring the corners of the unit square, ie. using finite differences.
[edit] Bicubic convolution algorithm
Bicubic spline interpolation requires the solution of the linear system described above for each grid cell. An interpolator with similar properties can be obtained by applying convolution with the following kernel in both dimensions:
where a is usually set to -0.5 or -0.75. Note that W(0) = 1 and W(n) = 0 for all nonzero integers n.
This approach was proposed by Keys who showed that a = − 0.5 (which corresponds to cubic Hermite spline) produces the best approximation of the original function[1].
If we use the matrix notation for the common case a = − 0.5, we can express the equation in a more friendly manner:
for t between 0 and 1 for one dimension. for two dimensions first applied once in x and again in y:
[edit] Use in computer graphics
The bicubic algorithm is frequently used for scaling images and video for display (see bitmap resampling). It preserves fine detail better than the common bilinear algorithm.
However, due to the negative lobes on the kernel, it causes overshoot (haloing). This can cause clipping, and is an artifact (see also ringing artifacts), but it increases acutance (apparent sharpness), and can be desirable.
[edit] References
[edit] See also
- Anti-aliasing
- Bézier surface
- Bilinear interpolation
- Tricubic interpolation
- Cubic Hermite spline, the one-dimensional analogue of bicubic spline
- Lanczos resampling
- Sinc filter
- Spline interpolation