Aller au contenu

Utilisateur:Benji547/Bspline

Une page de Wikipédia, l'encyclopédie libre.

In the mathematical subfield of numerical analysis, a B-spline is a spline function that has minimal support with respect to a given degree, smoothness, and domain partition. A fundamental theorem states that every spline function of a given degree, smoothness, and domain partition, can be represented as a linear combination of B-splines of that same degree and smoothness, and over that same partition.[1] The term B-spline was coined by Isaac Jacob Schoenberg and is short for basis spline.[2] B-splines can be evaluated in a numerically stable way by the de Boor algorithm. Simplified, potentially faster variants of the de Boor algorithm have been created but they suffer from comparatively lower stability.[3][4]

In the computer science subfields of computer-aided design and computer graphics the term B-spline frequently refers to a spline curve parametrized by spline functions that are expressed as linear combinations of B-splines (in the mathematical sense above). A B-spline is simply a generalisation of a Bézier curve, and it can avoid the Runge phenomenon without increasing the degree of the B-spline.

Definition[modifier | modifier le code]

Given m real valued ti, called knots, with

a B-spline of degree n is a parametric curve

composed of a linear combination of basis B-splines bi,n of degree n

.

The Pi are called control points or de Boor points. There are m−n+1 control points and they form a convex hull.

The m-n+1 basis B-splines of degree n can be defined using the Cox-de Boor recursion formula

When the knots are equidistant the B-spline is said to be uniform, otherwise non-uniform. If two knots tj are identical, any resulting indeterminate forms 0/0 are deemed to be 0.

Note that j+n+1 can not exceed m-1, which limits both j and n.

Uniform B-spline[modifier | modifier le code]

When the B-spline is uniform, the basis B-splines for a given degree n are just shifted copies of each other. An alternative non-recursive definition for the m−n+1 basis B-splines is

with

and

where

is the truncated power function.

Cardinal B-spline[modifier | modifier le code]

Define B0 as the characteristic function of , and Bk recursively as the convolution product

then Bk are called (centered) cardinal B-splines. This definition goes back to Schoenberg.

Bk has compact support and is an even function. As the normalized cardinal B-splines tend to the Gaussian function.[5]

Notes[modifier | modifier le code]

When the number of de Boor control points is the same as the degree, the B-Spline degenerates into a Bézier curve. The shape of the basis functions is determined by the position of the knots. Scaling or translating the knot vector does not alter the basis functions.

The spline is contained in the convex hull of its control points.

A basis B-spline of degree n

is non-zero only in the interval [ti, ti+n+1] that is

In other words if we manipulate one control point we only change the local behaviour of the curve and not the global behaviour as with Bézier curves.

The basis function can be derived from the Bernstein polynomial.

Examples[modifier | modifier le code]

Constant B-spline[modifier | modifier le code]

The constant B-spline is the simplest spline. It is defined on only one knot span and is not even continuous on the knots. It is just the indicator function for the different knot spans.

Linear B-spline[modifier | modifier le code]

The linear B-spline is defined on two consecutive knot spans and is continuous on the knots, but not differentiable.

Uniform quadratic B-spline[modifier | modifier le code]

Quadratic B-splines with uniform knot-vector is a commonly used form of B-spline. The blending function can easily be precalculated, and is equal for each segment in this case.

Put in matrix-form, it is:[1]

for

Cubic B-Spline[modifier | modifier le code]

A B-spline formulation for a single segment can be written as:

where Si is the ith B-spline segment and P is the set of control points, segment i and k is the local control point index. A set of control points would be where the is weight, pulling the curve towards control point as it increases or moving the curve away as it decreases.

An entire set of segments, m-2 curves () defined by m+1 control points (), as one B-spline in t would be defined as:

where i is the control point number and t is a global parameter giving knot values. This formulation expresses a B-spline curve as a linear combination of B-spline basis functions, hence the name.

There are two types of B-spline - uniform and non-uniform. A non-uniform B-spline is a curve where the intervals between successive control points is not, or not necessarily, equal (the knot vector of interior knot spans are not equal). A common form is where intervals are successively reduced to zero, interpolating control points.

Uniform cubic B-splines[modifier | modifier le code]

Cubic B-splines with uniform knot-vector is the most commonly used form of B-spline. The blending function can easily be precalculated, and is equal for each segment in this case. Put in matrix-form, it is:

for

See also[modifier | modifier le code]

References[modifier | modifier le code]

  1. (en) Carl de Boor, A Practical Guide to Splines, Springer-Verlag, , 113–114 p.
  2. (en) Carl de Boor, A Practical Guide to Splines, Springer-Verlag, , 114–115 p.
  3. E. T. Y. Lee, « A Simplified B-Spline Computation Routine », Computing, Springer-Verlag, vol. 29, no 4,‎ , p. 365-371 (DOI 10.1007/BF02246763)
  4. Lee, E. T. Y., « Comments on some B-spline algorithms », Computing, Springer-Verlag, vol. 36, no 3,‎ , p. 229-238 (DOI 10.1007/BF02240069)
  5. Brinks R: On the convergence of derivatives of B-splines to derivatives of the Gaussian function, Comp. Appl. Math., 27, 1, 2008

External links[modifier | modifier le code]

Catégorie:Spline Catégorie:Interpolation numérique