Cubic Hermite spline

Not to be confused with Hermite polynomial.

In numerical analysis, a cubic Hermite spline or cubic Hermite interpolator is a spline where each piece is a third-degree polynomial specified in Hermite form:[1] that is, by its values and first derivatives at the end points of the corresponding domain interval.

Cubic Hermite splines are typically used for interpolation of numeric data specified at given argument values x_1,x_2,\ldots,x_n, to obtain a smooth continuous function. The data should consist of the desired function value and derivative at each x_k. (If only the values are provided, the derivatives must be estimated from them.) The Hermite formula is applied to each interval (x_k, x_{k+1}) separately. The resulting spline will be continuous and will have continuous first derivative.

Cubic polynomial splines can be specified in other ways, the Bézier form being the most common. However, these two methods provide the same set of splines, and data can be easily converted between the Bézier and Hermite forms; so the names are often used as if they were synonymous.

Cubic polynomial splines are extensively used in computer graphics and geometric modeling to obtain curves or motion trajectories that pass through specified points of the plane or three-dimensional space. In these applications, each coordinate of the plane or space is separately interpolated by a cubic spline function of a separate parameter t.

Cubic splines can be extended to functions of two or more parameters, in several ways. Bicubic splines (Bicubic interpolation) are often used to interpolate data on a regular rectangular grid, such as pixel values in a digital image or altitude data on a terrain. Bicubic surface patches, defined by three bicubic splines, are an essential tool in computer graphics.

Cubic splines are often called csplines, especially in computer graphics. Hermite splines are named after Charles Hermite.

Interpolation on a single interval

Unit interval (0, 1)

On the unit interval (0,1), given a starting point \boldsymbol{p}_0 at t=0 and an ending point \boldsymbol{p}_1 at t=1 with starting tangent \boldsymbol{m}_0 at t=0 and ending tangent \boldsymbol{m}_1 at t=1, the polynomial can be defined by

\boldsymbol{p}(t) = (2t^3-3t^2+1)\boldsymbol{p}_0 + (t^3-2t^2+t)\boldsymbol{m}_0 + (-2t^3+3t^2)\boldsymbol{p}_1 +(t^3-t^2)\boldsymbol{m}_1
The four Hermite basis functions. The interpolant in each subinterval is a linear combination of these four functions.

where t ∈ [0, 1].

Interpolation on an arbitrary interval

Interpolating x in an arbitrary interval (x_k, x_{k+1}) is done by mapping the latter to [0,1] through an affine (degree 1) change of variable. The formula is

\boldsymbol{p}(x) = h_{00}(t)\boldsymbol{p}_{k} + h_{10}(t)(x_{k+1}-x_k)\boldsymbol{m}_{k} + h_{01}(t)\boldsymbol{p}_{k+1} + h_{11}(t)(x_{k+1}-x_k)\boldsymbol{m}_{k+1}.

with t = (x-x_k)/(x_{k+1}-x_k) and h refers to the basis functions, defined below. Note that the tangent values have been scaled by x_{k+1}-x_k compared to the equation on the unit interval.

Uniqueness

The formulae specified above provide the unique third-degree polynomial path between the two points with the given tangents.
Proof:
Let Q(x) be another third degree polynomial satisfying the given boundary conditions. Define  R(x) = Q(x)-P(x) . Since both  Q and  P are third degree polynomials, R is at most a third degree polynomial. Furthermore:

 R(0) = Q(0)-P(0) = 0 (We assume both P and Q satisfy the boundary conditions)
R(1) = 0

So R must be of the form:

R(x) = ax(x-1)(x-r)
R'(x) = ax(x-1) + ax(x-r) + a(x-1)(x-r)

We know furthermore that:

R'(0) = Q'(0) - P'(0) = 0

R'(0) = 0 = ar

 

 

 

 

(1)

R'(1) = Q'(1) - P'(1) = 0

R'(1) = 0 = a(1-r)

 

 

 

 

(2)

Putting (1) and (2) together, we deduce that a = 0 and therefore R = 0, thus P(x) = Q(x)

Representations

We can write the interpolation polynomial as

\boldsymbol{p}(t) = h_{00}(t)\boldsymbol{p}_0 + h_{10}(t)\boldsymbol{m}_0 + h_{01}(t)\boldsymbol{p}_1 + h_{11}(t)\boldsymbol{m}_1

where h_{00}, h_{10}, h_{01}, h_{11} are Hermite basis functions. These can be written in different ways, each way revealing different properties.

expanded factorized Bernstein
h_{00}(t) 2t^3-3t^2+1 (1 + 2 t) ( 1 - t)^2 B_0(t) + B_1(t)
h_{10}(t) t^3-2t^2+t t (1 - t)^2 \frac{1}{3}\cdot B_1(t)
h_{01}(t) -2t^3+3t^2 t^2 (3 - 2 t) B_3(t) + B_2(t)
h_{11}(t) t^3-t^2 t^2 (t - 1) -\frac{1}{3}\cdot B_2(t)

The "expanded" column shows the representation used in the definition above. The "factorized" column shows immediately, that h_{10} and h_{11} are zero at the boundaries. You can further conclude that h_{01} and h_{11} have a zero of multiplicity 2 at 0 and h_{00} and h_{10} have such a zero at 1, thus they have slope 0 at those boundaries. The "Bernstein" column shows the decomposition of the Hermite basis functions into Bernstein polynomials of order 3:

B_k(t)={3 \choose k} \cdot t^k \cdot (1-t)^{3-k}

Using this connection you can express cubic Hermite interpolation in terms of cubic Bézier curves with respect to the four values \boldsymbol{p}_0, \boldsymbol{p}_0 + \frac{\boldsymbol{m}_0}{3}, \boldsymbol{p}_1 - \frac{\boldsymbol{m}_1}{3}, \boldsymbol{p}_1 and do Hermite interpolation using the de Casteljau algorithm. It shows that in a cubic Bézier patch the two control points in the middle determine the tangents of the interpolation curve at the respective outer points.

Interpolating a data set

A data set, (t_k,\boldsymbol{p}_k) for k=1,\ldots,n, can be interpolated by applying the above procedure on each interval, where the tangents are chosen in a sensible manner, meaning that the tangents for intervals sharing endpoints are equal. The interpolated curve then consists of piecewise cubic Hermite splines, and is globally continuously differentiable in (t_1,t_n).

The choice of tangents is non-unique, and there are several options available.

Finite difference

Example with finite difference tangents

The simplest choice is the three-point difference, not requiring constant interval lengths,

\boldsymbol{m}_k = \frac{1}{2}\left(\frac{\boldsymbol{p}_{k+1}-\boldsymbol{p}_{k}}{t_{k+1}-t_{k}} + \frac{\boldsymbol{p}_{k}-\boldsymbol{p}_{k-1}}{t_{k}-t_{k-1}}\right)

for internal points k=2,\ldots,n-1, and one-sided difference at the endpoints of the data set.

Cardinal spline

Cardinal spline example in 2D. The line represents the curve, and the squares represent the control points \boldsymbol{p}_k. Notice that the curve does not reach the first and last points, these points do however affect the shape of the curve. The tension parameter used is 0.1

A cardinal spline, sometimes called a canonical spline,[2] is obtained[3] if

 \boldsymbol{m}_k = (1-c)\frac{\boldsymbol{p}_{k+1}-\boldsymbol{p}_{k-1}}{t_{k+1}-t_{k-1}}

is used to calculate the tangents. The parameter c is a tension parameter that must be in the interval [0,1]. In some sense, this can be interpreted as the "length" of the tangent. Choosing c=1 yields all zero tangents, and choosing c=0 yields a Catmull–Rom spline.

Catmull–Rom spline

For tangents chosen to be

\boldsymbol{m}_k = \frac{\boldsymbol{p}_{k+1} - \boldsymbol{p}_{k-1}}{t_{k+1} - t_{k-1}}

a Catmull–Rom spline is obtained, being a special case of a cardinal spline. This assumes uniform parameter spacing.

The curve is named after Edwin Catmull and Raphael Rom. The principal advantage of this technique is that the points along the original set of points also make up the control points for the spline curve.[4] Two additional points are required on either end of the curve. The default implementation of the Catmull–Rom algorithm can produce loops and self intersections. The chordal and centripetal Catmull–Rom implementations [5] solve this problem, but use a slightly different calculation.[6] In computer graphics, Catmull–Rom splines are frequently used to get smooth interpolated motion between key frames. For example, most camera path animations generated from discrete key-frames are handled using Catmull–Rom splines. They are popular mainly for being relatively easy to compute, guaranteeing that each key frame position will be hit exactly, and also guaranteeing that the tangents of the generated curve are continuous over multiple segments.

Kochanek–Bartels spline

A Kochanek–Bartels spline is a further generalization on how to choose the tangents given the data points \boldsymbol{p}_{k-1}, \boldsymbol{p}_k and \boldsymbol{p}_{k+1}, with three parameters possible, tension, bias and a continuity parameter.

Monotone cubic interpolation

If a cubic Hermite spline of any of the above listed types is used for interpolation of a monotonic data set, the interpolated function will not necessarily be monotonic, but monotonicity can be preserved by adjusting the tangents.

Interpolation on the unit interval without exact derivatives

Given pn−1, pn, pn+1 and pn+2 as the values that the function, f(x), takes at integer ordinates n−1, n, n+1 and n+2, we can use centered differences instead of exact derivatives.[7] Thus the Catmull–Rom spline is

\begin{align}
f(n+x) = \mathrm{CINT}_x(p_{n-1}, p_n, p_{n+1}, p_{n+2}) & =  \frac 12 \begin{bmatrix} -x^3 +2x^2 - x \\ 3x^3 - 5x^2 + 2 \\ -3x^3 + 4x^2 + x \\ x^3 - x^2 \end{bmatrix}\cdot \begin{bmatrix} p_{n-1}\\p_n\\p_{n+1}\\p_{n+2} \end{bmatrix} \\
& = \frac 12 \begin{bmatrix} x ((2-x) x-1) \\ x^2 (3 x-5)+2 \\ x ((4-3 x) x+1) \\ (x-1) x^2 \end{bmatrix} \cdot \begin{bmatrix}  p_{n-1}\\p_n\\p_{n+1}\\p_{n+2} \end{bmatrix} \\
& = \frac 12
\begin{bmatrix}
1 & x & x^2 & x^3 \\
\end{bmatrix}
\cdot
\begin{bmatrix}
0 & 2 & 0 & 0 \\
-1 & 0 & 1 & 0 \\
2 & -5 & 4 & -1 \\
-1 & 3 & -3 & 1 \\
\end{bmatrix}
\cdot
\begin{bmatrix}
p_{n-1} \\
p_n \\
p_{n+1} \\
p_{n+2} \\
\end{bmatrix} \\
\end{align}

for 0 \le x \le 1, where the left-hand vector is independent of the p.

This writing is relevant for tricubic interpolation, where one optimization requires you to compute CINTx sixteen times with the same x and different p.

See also

References

  1. Erwin Kreyszig (2005). Advanced Engineering Mathematics (9 ed.). Wiley. p. 816. ISBN 9780471488859.
  2. Charles Petzold. "Canonical Splines in WPF and Silverlight". 2009.
  3. Cardinal Splines at Microsoft Developer Network
  4. Catmull, Edwin; Rom, Raphael (1974), "A class of local interpolating splines", in Barnhill, R. E.; Riesenfeld, R. F., Computer Aided Geometric Design, New York: Academic Press, pp. 317–326
  5. N. Dyn, M. S. Floater, and K. Hormann. Four-point curve subdivision based on iterated chordal and centripetal parameterizations. Computer Aided Geometric Design, 26(3):279{286, 2009
  6. P. J. Barry and R. N. Goldman. A recursive evaluation algorithm for a class of Catmull-Rom splines. SIGGRAPH Computer Graphics, 22(4):199{204, 1988.
  7. Two hierarchies of spline interpolations. Practical algorithms for multivariate higher order splines

External links

This article is issued from Wikipedia - version of the Wednesday, February 24, 2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.