HOME

TheInfoList



OR:

In
mathematics Mathematics is a field of study that discovers and organizes methods, Mathematical theory, theories and theorems that are developed and Mathematical proof, proved for the needs of empirical sciences and mathematics itself. There are many ar ...
, bilinear interpolation is a method for interpolating functions of two variables (e.g., ''x'' and ''y'') using repeated
linear interpolation In mathematics, linear interpolation is a method of curve fitting using linear polynomials to construct new data points within the range of a discrete set of known data points. Linear interpolation between two known points If the two known po ...
. It is usually applied to functions sampled on a 2D rectilinear grid, though it can be generalized to functions defined on the vertices of (a mesh of) arbitrary convex
quadrilateral In Euclidean geometry, geometry a quadrilateral is a four-sided polygon, having four Edge (geometry), edges (sides) and four Vertex (geometry), corners (vertices). The word is derived from the Latin words ''quadri'', a variant of four, and ''l ...
s. Bilinear interpolation is performed using linear interpolation first in one direction, and then again in another direction. Although each step is linear in the sampled values and in the position, the interpolation as a whole is not linear but rather quadratic in the sample location. Bilinear interpolation is one of the basic resampling techniques in
computer vision Computer vision tasks include methods for image sensor, acquiring, Image processing, processing, Image analysis, analyzing, and understanding digital images, and extraction of high-dimensional data from the real world in order to produce numerical ...
and
image processing An image or picture is a visual representation. An image can be two-dimensional, such as a drawing, painting, or photograph, or three-dimensional, such as a carving or sculpture. Images may be displayed through other media, including a pr ...
, where it is also called bilinear filtering or bilinear texture mapping.


Computation

Suppose that we want to find the value of the unknown function ''f'' at the point (''x'', ''y''). It is assumed that we know the value of ''f'' at the four points ''Q''11 = (''x''1, ''y''1), ''Q''12 = (''x''1, ''y''2), ''Q''21 = (''x''2, ''y''1), and ''Q''22 = (''x''2, ''y''2).


Repeated linear interpolation

We first do linear interpolation in the ''x''-direction. This yields :\begin f(x, y_1) = \frac f(Q_) + \frac f(Q_), \\ f(x, y_2) = \frac f(Q_) + \frac f(Q_). \end We proceed by interpolating in the ''y''-direction to obtain the desired estimate: :\begin f(x,y) &= \frac f(x, y_1) + \frac f(x, y_2) \\ &= \frac \left( \frac f(Q_) + \frac f(Q_) \right) + \frac \left( \frac f(Q_) + \frac f(Q_) \right) \\ &\begin = \frac ( &f(Q_)(x_2-x)(y_2-y) + f(Q_)(x_2-x)(y-y_1)\\ & + f(Q_)(x-x_1)(y_2-y) + f(Q_)(x-x_1)(y-y_1)) \end \\ &= \frac \begin x_2-x & x-x_1 \end \begin f(Q_) & f(Q_) \\ f(Q_) & f(Q_) \end \begin y_2-y \\ y-y_1 \end. \end Note that we will arrive at the same result if the interpolation is done first along the ''y'' direction and then along the ''x'' direction.


Polynomial fit

An alternative way is to write the solution to the interpolation problem as a multilinear polynomial :f(x, y) \approx a_ + a_x + a_y + a_xy, where the coefficients are found by solving the linear system :\begin \begin 1 & x_1 & y_1 & x_1 y_1 \\ 1 & x_1 & y_2 & x_1 y_2 \\ 1 & x_2 & y_1 & x_2 y_1 \\ 1 & x_2 & y_2 & x_2 y_2 \end\begin a_\\a_\\a_\\a_ \end = \begin f(Q_)\\f(Q_)\\f(Q_)\\f(Q_) \end, \end yielding the result :\begin \begin a_\\a_\\a_\\a_ \end = \frac\begin x_2y_2 & -x_2y_1 & -x_1y_2 & x_1y_1 \\ -y_2 & y_1 & y_2 & -y_1 \\ -x_2 & x_2 & x_1 & -x_1 \\ 1 & -1 & -1 & 1 \end\begin f(Q_)\\f(Q_)\\f(Q_)\\f(Q_) \end. \end


Weighted mean

The solution can also be written as a weighted mean of the ''f''(''Q''): :f(x, y) \approx w_ f(Q_) + w_ f(Q_) + w_ f(Q_) + w_ f(Q_), where the weights sum to 1 and satisfy the transposed linear system : \begin 1 & 1 & 1 & 1 \\ x_1 & x_1 & x_2 & x_2 \\ y_1 & y_2 & y_1 & y_2 \\ x_1y_1 & x_1y_2 & x_2y_1 & x_2y_2 \end \begin w_ \\ w_ \\ w_ \\ w_ \end = \begin 1 \\ x \\ y \\ xy \end, yielding the result :\begin \begin w_\\w_\\w_\\w_ \end = \frac\begin x_2y_2 & -y_2 & -x_2 & 1 \\ -x_2y_1 & y_1 & x_2 & -1 \\ -x_1y_2 & y_2 & x_1 & -1 \\ x_1y_1 & -y_1 & -x_1 & 1 \end\begin 1\\x\\y\\xy \end, \end which simplifies to :\begin w_ &= \frac, \\ w_ &= \frac, \\ w_ &= \frac, \\ w_ &= \frac, \end in agreement with the result obtained by repeated linear interpolation. The set of weights can also be interpreted as a set of generalized barycentric coordinates for a rectangle.


Alternative matrix form

Combining the above, we have :\begin f(x,y) \approx \frac \beginf(Q_) & f(Q_) & f(Q_) & f(Q_)\end\begin x_2y_2 & -y_2 & -x_2 & 1 \\ -x_2y_1 & y_1 & x_2 & -1 \\ -x_1y_2 & y_2 & x_1 & -1 \\ x_1y_1 & -y_1 & -x_1 & 1 \end\begin 1\\x\\y\\xy \end. \end


On the unit square

If we choose a coordinate system in which the four points where ''f'' is known are (0, 0), (0, 1), (1, 0), and (1, 1), then the interpolation formula simplifies to :f(x, y) \approx f(0, 0) (1 - x)(1 - y) + f(0, 1) (1 - x)y + f(1, 0) x(1 - y) + f(1, 1) xy, or equivalently, in matrix operations: :f(x, y) \approx \begin 1 - x & x \end \begin f(0, 0) & f(0, 1) \\ f(1, 0) & f(1, 1) \end \begin 1 - y \\ y \end. Here we also recognize the weights: :\begin w_ &= (1 - x)(1 - y), \\ w_ &= (1 - x)y, \\ w_ &= x(1 - y), \\ w_ &= xy. \end Alternatively, the interpolant on the unit square can be written as :f(x, y) = a_ + a_x + a_y + a_xy, where :\begin a_ &= f(0, 0), \\ a_ &= f(1, 0) - f(0, 0), \\ a_ &= f(0, 1) - f(0, 0), \\ a_ &= f(1, 1) - f(1, 0) - f(0, 1) + f(0, 0). \end In both cases, the number of constants (four) correspond to the number of data points where ''f'' is given.


Properties

As the name suggests, the bilinear interpolant is ''not'' linear; but it is linear (i.e. affine) along lines parallel to either the ''x'' or the ''y'' direction, equivalently if ''x'' or ''y'' is held constant. Along any other straight line, the interpolant is quadratic. Even though the interpolation is ''not'' linear in the position (''x'' and ''y''), at a fixed point it ''is'' linear in the interpolation values, as can be seen in the (matrix) equations above. The result of bilinear interpolation is independent of which axis is interpolated first and which second. If we had first performed the linear interpolation in the ''y'' direction and then in the ''x'' direction, the resulting approximation would be the same. The interpolant is a bilinear polynomial, which is also a harmonic function satisfying Laplace's equation. Its graph is a bilinear Bézier surface patch.


Inverse and generalization

In general, the interpolant will assume any value (in the convex hull of the vertex values) at an infinite number of points (forming branches of hyperbolas), so the interpolation is not invertible. However, when bilinear interpolation is applied to two functions simultaneously, such as when interpolating a vector field, then the interpolation is invertible (under certain conditions). In particular, this inverse can be used to find the "unit square coordinates" of a point inside any convex
quadrilateral In Euclidean geometry, geometry a quadrilateral is a four-sided polygon, having four Edge (geometry), edges (sides) and four Vertex (geometry), corners (vertices). The word is derived from the Latin words ''quadri'', a variant of four, and ''l ...
(by considering the coordinates of the quadrilateral as a vector field which is bilinearly interpolated on the unit square). Using this procedure bilinear interpolation can be extended to any convex quadrilateral, though the computation is significantly more complicated if it is not a parallelogram. The resulting map between quadrilaterals is known as a ''bilinear transformation'', ''bilinear warp'' or ''bilinear distortion''. Alternatively, a projective mapping between a quadrilateral and the unit square may be used, but the resulting interpolant will not be bilinear. In the special case when the quadrilateral is a parallelogram, a linear mapping to the unit square exists and the generalization follows easily. The obvious extension of bilinear interpolation to three dimensions is called trilinear interpolation. Let F be a vector field that is bilinearly interpolated on the unit square parameterized by \mu, \lambda \in ,1/math>. Inverting the interpolation requires solving a system of two bilinear polynomial equations:A + B\lambda + C\mu + D\lambda\mu = 0where \begin A &= F_ - F \\ B &= F_ - F_ \\ C &= F_ - F_ \\ D &= F_ - F_ - F_ + F_ \endTaking a 2-d cross product (see Grassman product) of the system with a carefully chosen vectors allows us to eliminate terms:\begin (A + B\lambda + C\mu) &\times D &= 0 \\ (A + B\lambda) &\times (C + D\lambda) &= 0 \\ (A + C\mu) &\times (B + D\mu) &= 0 \\ \endwhich expands to\begin c + e\lambda + f\mu &= 0 \\ b + (c + d)\lambda + e\lambda^2&= 0 \\ a + (c - d)\mu + f\mu^2&= 0 \\ \endwhere\begin a &= A \times B \\ b &= A \times C \qquad d = B \times C \\ c &= A \times D \qquad e = B \times D \qquad f = C \times D \endThe quadratic equations can be solved using the quadratic formula. We have the equivalent determinants \mathbb = (c + d)^2 -4eb = (c - d)^2 - 4faand the solutions\lambda = \frac \qquad \mu = \frac(opposite signs are enforced by the linear relation). The cases when e=0 or f=0 must be handled separately. Given the right conditions, one of the two solutions should be in the unit square.


Application in image processing

In
computer vision Computer vision tasks include methods for image sensor, acquiring, Image processing, processing, Image analysis, analyzing, and understanding digital images, and extraction of high-dimensional data from the real world in order to produce numerical ...
and
image processing An image or picture is a visual representation. An image can be two-dimensional, such as a drawing, painting, or photograph, or three-dimensional, such as a carving or sculpture. Images may be displayed through other media, including a pr ...
, bilinear interpolation is used to resample images and textures. An algorithm is used to map a screen pixel location to a corresponding point on the texture map. A weighted average of the attributes (color, transparency, etc.) of the four surrounding texels is computed and applied to the screen pixel. This process is repeated for each pixel forming the object being textured. When an image needs to be scaled up, each pixel of the original image needs to be moved in a certain direction based on the scale constant. However, when scaling up an image by a non-integral scale factor, there are pixels (i.e., ''holes'') that are not assigned appropriate pixel values. In this case, those ''holes'' should be assigned appropriate RGB or
grayscale In digital photography, computer-generated imagery, and colorimetry, a greyscale (more common in Commonwealth English) or grayscale (more common in American English) image is one in which the value of each pixel is a single sample (signal), s ...
values so that the output image does not have non-valued pixels. Bilinear interpolation can be used where perfect image transformation with pixel matching is impossible, so that one can calculate and assign appropriate intensity values to pixels. Unlike other interpolation techniques such as nearest-neighbor interpolation and bicubic interpolation, bilinear interpolation uses values of only the 4 nearest pixels, located in diagonal directions from a given pixel, in order to find the appropriate color intensity values of that pixel. Bilinear interpolation considers the closest 2 × 2 neighborhood of known pixel values surrounding the unknown pixel's computed location. It then takes a weighted average of these 4 pixels to arrive at its final, interpolated value."Web tutorial: Digital Image Interpolation"


Example

As seen in the example on the right, the intensity value at the pixel computed to be at row 20.2, column 14.5 can be calculated by first linearly interpolating between the values at column 14 and 15 on each rows 20 and 21, giving :\begin I_ &= \frac \cdot 91 + \frac \cdot 210 = 150.5, \\ I_ &= \frac \cdot 162 + \frac \cdot 95 = 128.5, \end and then interpolating linearly between these values, giving :I_ = \frac \cdot 150.5 + \frac \cdot 128.5 = 146.1. This algorithm reduces some of the visual distortion caused by resizing an image to a non-integral zoom factor, as opposed to nearest-neighbor interpolation, which will make some pixels appear larger than others in the resized image.


A simplification of terms

This example is of tabularised pressure (columns) vs temperature (rows) data as a lookup against some variable: :\begin \bcancel & P_1 & P_x & P_2 \\ \hline T_1 & V_ & V_ & V_ \\ T_x & & V_ & \\ T_2 & V_ & V_ & V_ \end The following standard calculation by parts has 27 operations: :\begin I_ &= \frac \cdot V_ + \frac \cdot V_ = V_,\\ I_ &= \frac \cdot V_ + \frac \cdot V_ = V_,\\ I_ &= \frac \cdot V_ + \frac \cdot V_ = V_. \end The above has several repeated operations, e.g., (P_2 - P_1), (P_x - P_1), (P_x - P_1), (T_2 - T_1), as well as some ratios. These repetitions can be assigned temporary variables whilst computing a single interpolation, which will reduce the number of operations to 19. This can all be simplified from the initial 19 individual operations to 17 individual operations as such: :V_ = \frac. Simplification of terms is good practice for application of mathematical methodology to engineering applications and can reduce computational and energy requirements for a process.{{cn, date=December 2024


See also

* Bicubic interpolation * Trilinear interpolation * Spline interpolation * Lanczos resampling * Stairstep interpolation * Barycentric coordinates - for interpolating within a triangle or tetrahedron


References

Multivariate interpolation Euclidean plane geometry