B-spline
From Wikipedia, the free encyclopedia
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.
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.
Contents |
[edit] Definition
Given m+1 knots with
a B-spline of degree n is a parametric curve
composed of basis B-splines of degree n
- .
The Pi are called control points or de Boor points. (There are m−n control points.) A polygon can be constructed by connecting the de Boor points with lines, starting with P0 and finishing with Pm−n−1. This polygon is called the de Boor polygon.
The m−n basis B-splines of degree n can be defined using the Cox-de Boor recursion formula
When the knots are equidistant we say the B-spline is uniform otherwise we call it non-uniform. If two knots tj are identical, we deem .
[edit] Uniform B-spline
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 basis B-splines is
with
and
where
is the truncated power function.
[edit] Notes
When the number of knots 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.
[edit] Examples
[edit] Constant B-spline
The constant B-spline is the most simple spline. It is defined on only one knot span and is not even continuous on the knots. It is a just indicator function for the different knot spans.
[edit] Linear B-spline
The linear B-spline is defined on two consecutive knot spans and is continuous on the knots, but not differentiable.
[edit] Uniform quadratic B-spline
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:
- for
- Reference [1].
[edit] Cubic B-Spline
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 wi is weight, pulling the curve towards control point Pi as it increases or moving the curve away as it decreases.
An entire set of segments, m-2 curves (S3,S4,...,Sm) 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.
[edit] Uniform cubic B-splines
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
[edit] See also
- Spline (mathematics)
- Nonuniform rational B-splines (NURBS)
- De Boor algorithm
- Nonlinear B-Spline
[edit] External links
- Interactive java applets for B-splines
- B-spline on MathWorld
- Module B-Splines by John H. Mathews
- BSpline Java Applet by Stefan Beck (with C++ Source)