Akima spline

From Wikipedia, the free encyclopedia

In applied mathematics, an Akima spline is a type of non-smoothing spline that gives good fits to curves where the second derivative is rapidly varying.[1] The Akima spline was published by Hiroshi Akima in 1970 from Akima's pursuit of a cubic spline curve that would appear more natural and smooth, akin to an intuitively hand-drawn curve.[2][3] The Akima spline has become the algorithm of choice for several computer graphics applications.[3] Its advantage over the cubic spline curve is its stability with respect to outliers.[4]

Method[edit]

Given a set of "knot" points , where the are strictly increasing, the Akima spline will go through each of the given points. At those points, its slope, , is a function of the locations of the points through . Specifically, if we define as the slope of the line segment from to , namely

then the spline slopes are defined as the following weighted average of and ,

If the denominator equals zero, the slope is given as

The first two and the last two points need a special prescription, for example,

The spline is then defined as the piecewise cubic function whose value between and is the unique cubic polynomial ,

where the coefficients of the polynomial are chosen such that the four conditions of continuity of the spline together with its first derivative are satisfied,

which gives

Due to these conditions the Akima spline is a  C1 differentiable function, that is, the function itself is continuous and the first derivative is also continuous. However, in general, the second derivative is not necessarily continuous.

An advantage of the Akima spline is due to the fact that it uses only values from neighboring knot points in the construction of the coefficients of the interpolation polynomial between any two knot points. This means that there is no large system of equations to solve and the Akima spline avoids unphysical wiggles in regions where the second derivative in the underlying curve is rapidly changing. A possible disadvantage of the Akima spline is that it has a discontinuous second derivative.[5]

References[edit]

  1. ^ "Spline interpolation and fitting – ALGLIB, C++ and C# library". www.alglib.net.
  2. ^ Akima, Hiroshi (1970). "A new method of interpolation and smooth curve fitting based on local procedures" (PDF). Journal of the ACM. 17: 589–602. Archived (PDF) from the original on 2020-12-18. Retrieved 2020-12-18.
  3. ^ a b Salomon, David (2011), "Raster Graphics", Texts in Computer Science, London: Springer London, pp. 29–134, ISBN 978-0-85729-885-0, retrieved 2023-10-23
  4. ^ Siddiqi, Al-Lawati, Boulbrachene, Abul Hasan, Mohamed, Messaoud (2017). Modern Engineering Mathematics. CRC. ISBN 9781498712095.{{cite book}}: CS1 maint: multiple names: authors list (link)
  5. ^ "The Akima Interpolation".

External links[edit]