Bicubic interpolation

From Wikipedia, the free encyclopedia

Jump to: navigation, search

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.

Bicubic interpolation on the square [0,3] \times [0,3] consisting of 9 unit squares patched together. Bicubic interpolation as per Matlab's implementation. Colour indicates function value. The black dots are the locations of the prescribed data being interpolated. Note how the color samples are not radially symmetric. They are more square-based (It may be easier to compare by zooming on the image)
Bilinear interpolation on the same dataset as above. Derivatives of the surface are not continuous over the square boundaries.
Nearest-neighbor interpolation on the same dataset as above. Note that the information content in all these three examples is equivalent.

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

p(x,y) = \sum_{i=0}^3 \sum_{j=0}^3 a_{ij} x^i y^j.

The interpolation problem consists of determining the 16 coefficients aij. Matching p(x,y) with the function values yields four equations,

  1. f(0,0) = p(0,0) = a00
  2. f(1,0) = p(1,0) = a00 + a10 + a20 + a30
  3. f(0,1) = p(0,1) = a00 + a01 + a02 + a03
  4. f(1,1)      = p(1,1)   = \textstyle \sum_{i=0}^3 \sum_{j=0}^3 a_{ij}

Likewise, eight equations for the derivatives in the x-direction and the y-direction

  1. fx(0,0) = px(0,0) = a10
  2. fx(1,0) = px(1,0) = a10 + 2a20 + 3a30
  3. fx(0,1) = px(0,1) = a10 + a11 + a12 + a13
  4. f_x(1,1)    = p_x(1,1) = \textstyle \sum_{i=1}^3 \sum_{j=0}^3 a_{ij} i
  5. fy(0,0) = py(0,0) = a01
  6. fy(1,0) = py(1,0) = a01 + a11 + a21 + a31
  7. fy(0,1) = py(0,1) = a01 + 2a02 + 3a03
  8. f_y(1,1)    = p_y(1,1) = \textstyle \sum_{i=0}^3 \sum_{j=1}^3 a_{ij} j

And four equations for the cross derivative xy.

  1. fxy(0,0) = pxy(0,0) = a11
  2. fxy(1,0) = pxy(1,0) = a11 + 2a21 + 3a31
  3. fxy(0,1) = pxy(0,1) = a11 + 2a12 + 3a13
  4. f_{xy}(1,1) = p_{xy}(1,1) = \textstyle \sum_{i=1}^3 \sum_{j=1}^3 a_{ij} i j

where the expressions above have used the following identities,

p_x(x,y) = \textstyle \sum_{i=1}^3 \sum_{j=0}^3 a_{ij} i x^{i-1} y^j
p_y(x,y) = \textstyle \sum_{i=0}^3 \sum_{j=1}^3 a_{ij} x^i j y^{j-1}
p_{xy}(x,y) = \textstyle \sum_{i=1}^3 \sum_{j=1}^3 a_{ij} i x^{i-1} j y^{j-1}.

This procedure yields a surface p(x,y) on the unit square [0,1] \times [0,1] 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:

W(x) = 
\begin{cases}
1 & \text{for } x = 0\\
 (a+2)|x|^3-(a+3)|x|^2+1 & \text{for } 0 < |x| < 1 \\
 a|x|^3-5a|x|^2+8a|x|-4a & \text{for } 1 < |x| < 2 \\
 0                       & \text{otherwise}
\end{cases}

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:

p(t) =
\tfrac{1}{2}
\begin{bmatrix}

1 & t & t^2 & t^3 \\

\end{bmatrix}
\begin{bmatrix}

0 & 2 & 0 & 0 \\
-1 & 0 & 1 & 0 \\
2 & -5 & 4 & -1 \\
-1 & 3 & -3 & 1 \\

\end{bmatrix}
\begin{bmatrix}

a_{-1} \\
a_0 \\
a_1 \\
a_2 \\

\end{bmatrix}

for t between 0 and 1 for one dimension. for two dimensions first applied once in x and again in y:

\textstyle b_{-1} = p(t_x, a_{(-1,-1)}, a_{(0,-1)}, a_{(1,-1)}, a_{(2,-1)})
\textstyle b_{0} = p(t_x, a_{(-1,0)}, a_{(0,0)}, a_{(1,0)}, a_{(2,0)})
\textstyle b_{1} = p(t_x, a_{(-1,1)}, a_{(0,1)}, a_{(1,1)}, a_{(2,1)})
\textstyle b_{2} = p(t_x, a_{(-1,2)}, a_{(0,2)}, a_{(1,2)}, a_{(2,2)})
\textstyle p(x,y) = p(t_y, b_{-1}, b_{0}, b_{1}, b_{2})

[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.

Bicubic interpolation causes overshoot, which increases acutance.

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

  1. ^ R. Keys, (1981). "Cubic convolution interpolation for digital image processing". IEEE Transactions on Signal Processing, Acoustics, Speech, and Signal Processing 29: 1153. doi:10.1109/TASSP.1981.1163711. 

[edit] See also

[edit] External links

Personal tools
Languages