Harman Patil (Editor)

Bicubic interpolation

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit
Bicubic interpolation

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.

Contents

In image processing, bicubic interpolation is often chosen over bilinear interpolation or nearest neighbor in image resampling, when speed is not an issue. In contrast to bilinear interpolation, which only takes 4 pixels (2×2) into account, bicubic interpolation considers 16 pixels (4×4). Images resampled with bicubic interpolation are smoother and have fewer interpolation artifacts.

Computation

Suppose the function values f and the derivatives f x , f y and f x y 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 ) = i = 0 3 j = 0 3 a i j x i y j .

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

  1. f ( 0 , 0 ) = p ( 0 , 0 ) = a 00
  2. f ( 1 , 0 ) = p ( 1 , 0 ) = a 00 + a 10 + a 20 + a 30
  3. f ( 0 , 1 ) = p ( 0 , 1 ) = a 00 + a 01 + a 02 + a 03
  4. f ( 1 , 1 ) = p ( 1 , 1 ) = i = 0 3 j = 0 3 a i j

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

  1. f x ( 0 , 0 ) = p x ( 0 , 0 ) = a 10
  2. f x ( 1 , 0 ) = p x ( 1 , 0 ) = a 10 + 2 a 20 + 3 a 30
  3. f x ( 0 , 1 ) = p x ( 0 , 1 ) = a 10 + a 11 + a 12 + a 13
  4. f x ( 1 , 1 ) = p x ( 1 , 1 ) = i = 1 3 j = 0 3 a i j i
  5. f y ( 0 , 0 ) = p y ( 0 , 0 ) = a 01
  6. f y ( 1 , 0 ) = p y ( 1 , 0 ) = a 01 + a 11 + a 21 + a 31
  7. f y ( 0 , 1 ) = p y ( 0 , 1 ) = a 01 + 2 a 02 + 3 a 03
  8. f y ( 1 , 1 ) = p y ( 1 , 1 ) = i = 0 3 j = 1 3 a i j j

And four equations for the cross derivative x y .

  1. f x y ( 0 , 0 ) = p x y ( 0 , 0 ) = a 11
  2. f x y ( 1 , 0 ) = p x y ( 1 , 0 ) = a 11 + 2 a 21 + 3 a 31
  3. f x y ( 0 , 1 ) = p x y ( 0 , 1 ) = a 11 + 2 a 12 + 3 a 13
  4. f x y ( 1 , 1 ) = p x y ( 1 , 1 ) = i = 1 3 j = 1 3 a i j i j

where the expressions above have used the following identities,

p x ( x , y ) = i = 1 3 j = 0 3 a i j i x i 1 y j p y ( x , y ) = i = 0 3 j = 1 3 a i j x i j y j 1 p x y ( x , y ) = i = 1 3 j = 1 3 a i j i x i 1 j y j 1 .

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

Grouping the unknown parameters a i j in a vector,

α = [ a 00 a 10 a 20 a 30 a 01 a 11 a 21 a 31 a 02 a 12 a 22 a 32 a 03 a 13 a 23 a 33 ] T

and letting

x = [ f ( 0 , 0 ) f ( 1 , 0 ) f ( 0 , 1 ) f ( 1 , 1 ) f x ( 0 , 0 ) f x ( 1 , 0 ) f x ( 0 , 1 ) f x ( 1 , 1 ) f y ( 0 , 0 ) f y ( 1 , 0 ) f y ( 0 , 1 ) f y ( 1 , 1 ) f x y ( 0 , 0 ) f x y ( 1 , 0 ) f x y ( 0 , 1 ) f x y ( 1 , 1 ) ] T ,

the above system of equations can be reformulated into a matrix for the linear equation A α = x .

Inverting the matrix gives the more useful linear equation A 1 x = α which allows α to be calculated quickly and easily, where:

A 1 = [ 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 3 3 0 0 2 1 0 0 0 0 0 0 0 0 0 0 2 2 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 3 3 0 0 2 1 0 0 0 0 0 0 0 0 0 0 2 2 0 0 1 1 0 0 3 0 3 0 0 0 0 0 2 0 1 0 0 0 0 0 0 0 0 0 3 0 3 0 0 0 0 0 2 0 1 0 9 9 9 9 6 3 6 3 6 6 3 3 4 2 2 1 6 6 6 6 3 3 3 3 4 4 2 2 2 2 1 1 2 0 2 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 2 0 2 0 0 0 0 0 1 0 1 0 6 6 6 6 4 2 4 2 3 3 3 3 2 1 2 1 4 4 4 4 2 2 2 2 2 2 2 2 1 1 1 1 ] .

There can be another concise matrix form for 16 coefficients

[ f ( 0 , 0 ) f ( 0 , 1 ) f y ( 0 , 0 ) f y ( 0 , 1 ) f ( 1 , 0 ) f ( 1 , 1 ) f y ( 1 , 0 ) f y ( 1 , 1 ) f x ( 0 , 0 ) f x ( 0 , 1 ) f x y ( 0 , 0 ) f x y ( 0 , 1 ) f x ( 1 , 0 ) f x ( 1 , 1 ) f x y ( 1 , 0 ) f x y ( 1 , 1 ) ] = [ 1 0 0 0 1 1 1 1 0 1 0 0 0 1 2 3 ] [ a 00 a 01 a 02 a 03 a 10 a 11 a 12 a 13 a 20 a 21 a 22 a 23 a 30 a 31 a 32 a 33 ] [ 1 1 0 0 0 1 1 1 0 1 0 2 0 1 0 3 ] , or

[ a 00 a 01 a 02 a 03 a 10 a 11 a 12 a 13 a 20 a 21 a 22 a 23 a 30 a 31 a 32 a 33 ] = [ 1 0 0 0 0 0 1 0 3 3 2 1 2 2 1 1 ] [ f ( 0 , 0 ) f ( 0 , 1 ) f y ( 0 , 0 ) f y ( 0 , 1 ) f ( 1 , 0 ) f ( 1 , 1 ) f y ( 1 , 0 ) f y ( 1 , 1 ) f x ( 0 , 0 ) f x ( 0 , 1 ) f x y ( 0 , 0 ) f x y ( 0 , 1 ) f x ( 1 , 0 ) f x ( 1 , 1 ) f x y ( 1 , 0 ) f x y ( 1 , 1 ) ] [ 1 0 3 2 0 0 3 2 0 1 2 1 0 0 1 1 ] where p ( x , y ) = [ 1 x x 2 x 3 ] [ a 00 a 01 a 02 a 03 a 10 a 11 a 12 a 13 a 20 a 21 a 22 a 23 a 30 a 31 a 32 a 33 ] [ 1 y y 2 y 3 ] .

Finding derivatives from function values

If the derivatives are unknown, they are typically approximated from the function values at points neighbouring the corners of the unit square, e.g. using finite differences.

To find either of the single derivatives, f x or f y , using that method, find the slope between the two surrounding points in the appropriate axis. For example, to calculate f x for one of the points, find f ( x , y ) for the points to the left and right of the target point and calculate their slope, and similarly for f y .

To find the cross derivative, f x y , take the derivative in both axes, one at a time. For example, one can first use the f x procedure to find the x derivatives of the points above and below the target point, then use the f y procedure on those values (rather than, as usual, the values of f for those points) to obtain the value of f x y ( x , y ) for the target point. (Or one can do it in the opposite direction, first calculating f y and then f x off of those. The two give equivalent results.)

At the edges of the dataset, when one is missing some of the surrounding points, the missing points can be approximated by a number of methods. A simple and common method is to assume that the slope from the existing point to the target point continues without further change, and using this to calculate a hypothetical value for the missing point.

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 a convolution with the following kernel in both dimensions:

W ( x ) = { ( a + 2 ) | x | 3 ( a + 3 ) | x | 2 + 1 for  | x | 1 a | x | 3 5 a | x | 2 + 8 a | x | 4 a for  1 < | x | < 2 0 otherwise

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 third-order convergence with respect to the sampling interval of the original function.

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 ) = 1 2 [ 1 t t 2 t 3 ] [ 0 2 0 0 1 0 1 0 2 5 4 1 1 3 3 1 ] [ f 1 f 0 f 1 f 2 ]

for t between 0 and 1 for one dimension. Note that for 1-dimensional cubic convolution interpolation 4 sample points are required. For each inquiry two samples are located on its left and two samples on the right. These points are indexed from -1 to 2 in this text. The distance from the point indexed with 0 to the inquiry point is denoted by t here.

For two dimensions first applied once in x and again in y :

b 1 = p ( t x , f ( 1 , 1 ) , f ( 0 , 1 ) , f ( 1 , 1 ) , f ( 2 , 1 ) ) b 0 = p ( t x , f ( 1 , 0 ) , f ( 0 , 0 ) , f ( 1 , 0 ) , f ( 2 , 0 ) ) b 1 = p ( t x , f ( 1 , 1 ) , f ( 0 , 1 ) , f ( 1 , 1 ) , f ( 2 , 1 ) ) b 2 = p ( t x , f ( 1 , 2 ) , f ( 0 , 2 ) , f ( 1 , 2 ) , f ( 2 , 2 ) ) p ( x , y ) = p ( t y , b 1 , b 0 , b 1 , b 2 )

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.

References

Bicubic interpolation Wikipedia