Sphere-world

From formulasearchengine
Revision as of 22:25, 9 April 2013 by en>ClueBot NG (Reverting possible vandalism by 96.247.208.199 to version by Tbhotch. False positive? Report it. Thanks, ClueBot NG. (1586738) (Bot))
Jump to navigation Jump to search

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 (not to be confused with Hermite polynomial[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 x1,x2,,xn, to obtain a smooth continuous function. The data should consist of the desired function value and derivative at each xk. (If only the values are provided, the derivatives must be estimated from them.) The Hermite formula is applied to each interval (xk,xk+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 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 p0 at t=0 and an ending point p1 at t=1 with starting tangent m0 at t=0 and ending tangent m1 at t=1, the polynomial can be defined by

𝒑(t)=(2t33t2+1)𝒑0+(t32t2+t)𝒎0+(2t3+3t2)𝒑1+(t3t2)𝒎1
File:HermiteBasis.svg
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 (xk,xk+1) is done by mapping the latter to [0,1] through an affine (degree 1) change of variable. The formula is

𝒑(x)=h00(t)𝒑k+h10(t)(xk+1xk)𝒎k+h01(t)𝒑k+1+h11(t)(xk+1xk)𝒎k+1.

with t=(xxk)/(xk+1xk) and h refers to the basis functions, defined below. Note that the tangent values have been scaled by xk+1xk compared to the equation on the unit interval.

Uniqueness

The formulae specified above provides 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(x1)(xr)
R(x)=ax(x1)+ax(xr)+a(x1)(xr)

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(1r)...............(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

𝒑(t)=h00(t)𝒑0+h10(t)𝒎0+h01(t)𝒑1+h11(t)𝒎1

where h00,h10,h01,h11 are Hermite basis functions. These can be written in different ways, each way revealing different properties.

expanded factorized Bernstein
h00(t) 2t33t2+1 (1+2t)(1t)2 B0(t)+B1(t)
h10(t) t32t2+t t(1t)2 13B1(t)
h01(t) 2t3+3t2 t2(32t) B3(t)+B2(t)
h11(t) t3t2 t2(t1) 13B2(t)

The "expanded" column shows the representation used in the definition above. The "factorized" column shows immediately, that h10 and h11 are zero at the boundaries. You can further conclude that h01 and h11 have a zero of multiplicity 2 at 0 and h00 and h10 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:

Bk(t)=(3k)tk(1t)3k

Using this connection you can express cubic Hermite interpolation in terms of cubic Bézier curves with respect to the four values 𝒑0,𝒑0+𝒎03,𝒑1𝒎13,𝒑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, (tk,𝒑k) for k=1,,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 (t1,tn).

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

Finite difference

File:Finite difference spline example.png
Example with finite difference tangents

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

𝒎k=𝒑k+1𝒑k2(tk+1tk)+𝒑k𝒑k12(tktk1)

for internal points k=2,,n1, and one-sided difference at the endpoints of the data set.

Cardinal spline

File:Cardinal Spline Example.png
Cardinal spline example in 2D. The line represents the curve, and the squares represent the control points 𝒑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

𝒎k=(1c)𝒑k+1𝒑k1tk+1tk1

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. c=1 will yield all zero tangents, and c=0 yields a Catmull–Rom spline.

Catmull–Rom spline

Fitter (General ) Cameron Broadbent from Stevensville, spends time with hobbies including metal detection, property developers in singapore and psychology. Finds encouragement by making vacation to Tomb of Askia.

Have a look at my page; condo for Sale

For tangents chosen to be

𝒎k=𝒑k+1𝒑k1tk+1tk1

a Catmull–Rom spline is obtained, being a special case of a cardinal spline.

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 is capable of producing 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

Mining Engineer (Excluding Oil ) Truman from Alma, loves to spend time knotting, largest property developers in singapore developers in singapore and stamp collecting. Recently had a family visit to Urnes Stave Church. A Kochanek–Bartels spline is a further generalization on how to choose the tangents given the data points 𝒑k1, 𝒑k and 𝒑k+1, with three parameters possible, tension, bias and a continuity parameter.

Monotone cubic interpolation

Mining Engineer (Excluding Oil ) Truman from Alma, loves to spend time knotting, largest property developers in singapore developers in singapore and stamp collecting. Recently had a family visit to Urnes Stave Church. 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 p−1, p0, p1 and p2 as the values that the function should take on at −1, 0, 1 and 2, we can use centered differences instead of exact derivatives.[7] Thus the Catmull–Rom spline is

CINTx(p1,p0,p1,p2)=12(x3+2x2x3x35x2+23x3+4x2+xx3x2)(p1p0p1p2)=12(x((2x)x1)x2(3x5)+2x((43x)x+1)(x1)x2)(p1p0p1p2)

for x[0,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

43 year old Petroleum Engineer Harry from Deep River, usually spends time with hobbies and interests like renting movies, property developers in singapore new condominium and vehicle racing. Constantly enjoys going to destinations like Camino Real de Tierra Adentro.

  • Catmull, Edwin and Rom, Raphael, A class of local interpolating splines, in R. E. Barnhill and R. F. Riesenfeld (eds.) Computer Aided Geometric Design, Academic Press, New York, 1974, 317–326.
  1. 20 year-old Real Estate Agent Rusty from Saint-Paul, has hobbies and interests which includes monopoly, property developers in singapore and poker. Will soon undertake a contiki trip that may include going to the Lower Valley of the Omo.

    My blog: http://www.primaboinca.com/view_profile.php?userid=5889534
  2. Charles Petzold. "Canonical Splines in WPF and Silverlight". 2009.
  3. Cardinal Splines at Microsoft Developer Network
  4. E. Catmull and R. Rom. A class of local interpolating splines. Computer Aided Geometric Design, pages 317{326, 1974.
  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