Trilinear interpolation
From Wikipedia, the free encyclopedia
Trilinear interpolation is a method of multivariate interpolation on a 3-dimensional grid (possibly with an arbitrary, non-overlapping grid points in each dimension, but i.e. not an arbitrarily triangularized finite element mesh) of discretely sampled data. It approximates the value of an intermediate point (x,y,z) within the local axial rectangular prism linearly, using data on the lattice points.
Trilinear interpolation is frequently used in numerical analysis, data analysis, and computer graphics.
Contents |
[edit] Compared to linear and bilinear interpolation
Trilinear interpolation is the extension of linear interpolation, which operates in spaces with dimension D = 1, and bilinear interpolation, which operates with dimension D = 2, to dimension D = 3. The order of accuracy is 1 for all these interpolation schemes, and it requires (1 + n)D = 8 adjacent pre-defined values surrounding the interpolation point. There are several ways to arrive at trilinear interpolation, it is equivalent to 3-dimensional tensor B-spline interpolation of order 1, and the trilinear interpolation operator is also a tensor product of 3 linear interpolation operators
[edit] Method
On a periodic and cubic lattice with spacing 1, let xd, yd, and zd be the differences to the largest integer smaller than each of x, y, z, that is:
First we interpolate along z, giving:
Then we interpolate these values (along y), giving:
Finally we interpolate these values along x:
This gives us a predicted value for the point.
The result of trilinear interpolation is independent of the order of the interpolation steps along the three axes: any other order, for instance along x, then along y, and finally along z, produces the same value.
The above operations can be visualized as follows: First we find the eight corners of a cube that surround our point of interest. These corners have the values C000, C100, C010, C110, C001, C101, C011, C111.
Next, we perform linear interpolation between C000 and C100 to find C00, C001 and C101 to find C01, C011 and C111 to find C11, C010 and C110 to find C10.
Now we do interpolation between C00 and C10 to find C0, C01 and C11 to find C1. Finally, we calculate the value C via linear interpolation of C0 and C1
[edit] See also
[edit] External links
- pseudo-code
- Paul Bourke, Interpolation methods, 1999. Contains a section on trilinear interpolation.