De Boor's algorithm
In the mathematical subfield of numerical analysis de Boor's algorithm is a fast and numerically stable algorithm for evaluating spline curves in B-spline form. It is a generalization of de Casteljau's algorithm for Bézier curves. The algorithm was devised by Carl R. de Boor. Simplified, potentially faster variants of the de Boor algorithm have been created but they suffer from comparatively lower stability.[1][2]
Introduction
The general setting is as follows. We would like to construct a curve whose shape is described by a sequence of p points , which plays the role of a control polygon. The curve can be described as a function of one parameter x. To pass through the sequence of points, the curve must satisfy . But this is not quite the case: in general we are satisfied that the curve "approximates" the control polygon. We assume that u0, ..., up-1 are given to us along with .
One approach to solve this problem is by splines. A spline is a curve that is a piecewise nth degree polynomial. This means that, on any interval [ui, ui+1), the curve must be equal to a polynomial of degree at most n. It may be equal to different polynomials on different intervals. The polynomials must be synchronized: when the polynomials from intervals [ui-1, ui) and [ui, ui+1) meet at the point ui, they must have the same value at this point and their derivatives must be equal (to ensure that the curve is smooth).
De Boor's algorithm is an algorithm which, given u0, ..., up-1 and , finds the value of spline curve at a point x. It uses O(n2) + O(n + p) operations where n is the degree and p the number of control points of s.
Outline of the algorithm
Suppose we want to evaluate the spline curve for a parameter value . We can express the curve as
where[3]
and
Due to the spline locality property,
So the value is determined by the control points ; the other control points have no influence. De Boor's algorithm, described in the next section, is a procedure which efficiently calculates the expression for .
The algorithm
We can compute the above by defining some , setting for , and with these, computing:
Where the ratio is described by:
Doing so gives us
See also
External links
Computer code
TinySpline: Open source C-library for splines which implements De Boor's algorithm
References
- ↑ Lee, E. T. Y. (December 1982). "A Simplified B-Spline Computation Routine". Computing. Springer-Verlag. 29 (4): 365–371. doi:10.1007/BF02246763.
- ↑ Lee, E. T. Y. (1986). "Comments on some B-spline algorithms". Computing. Springer-Verlag. 36 (3): 229–238. doi:10.1007/BF02240069.
- ↑ http://www.cs.mtu.edu/~shene/COURSES/cs3621/NOTES/spline/B-spline/bspline-basis.html