Suvarna Garge (Editor)

Polyharmonic spline

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit
Polyharmonic spline

Polyharmonic splines are used for function approximation and data interpolation. They are very useful for interpolating and fitting scattered data in many dimensions. A special case is the thin plate spline.

Contents

Definition

A polyharmonic spline is a linear combination of polyharmonic radial basis functions (RBFs) denoted by ϕ plus a polynomial term:

where

  • x = [ x 1   x 2     x d ] T ( T denotes matrix transpose, meaning x is a column vector) is a real-valued vector of d independent variables,
  • c i = [ c i , 1   c i , 2     c i , d ] T are N vectors of the same size as x (often called centers) that the curve or surface must interpolate,
  • w = [ w 1   w 2     w N ] T are the N weights of the RBFs,
  • v = [ v 1   v 2     v d + 1 ] T are the d + 1 weights of the polynomial.
  • The polynomial with the coefficients v improves fitting accuracy for polyharmonic smoothing splines and also improves extrapolation away from the centers c i . See figure below for comparison of splines with polynomial term and without polynomial term.

    The polyharmonic RBFs are of the form:

    ϕ ( r ) = { r k with  k = 1 , 3 , 5 , , r k ln ( r ) with  k = 2 , 4 , 6 , r = | x c i | = ( x c i ) T ( x c i ) .

    Other values of the exponent k are not useful (such as ϕ ( r ) = r 2 ), because a solution of the interpolation problem might not exist. To avoid problems at r = 0 (since log ( 0 ) = ), the polyharmonic RBFs with the natural logarithm might be implemented as:

    ϕ ( r ) = { r k 1 ln ( r r ) for  r < 1 r k ln ( r ) for  r 1 .

    The weights w i and v j are determined such that the function interpolates N given points ( c i , f i ) (for i = 1 , 2 , , N ) and fulfills the d + 1 orthogonality conditions

    i = 1 N w i = 0 , i = 1 N w i c i = 0 .

    All together, these constraints are equivalent to the symmetric linear system of equations

    where

    A i , j = ϕ ( | c i c j | ) , B = [ 1 1 1 c 1 c 2 c N ] T , f = [ f 1 , f 2 , , f N ] T .

    In order for this system of equations to have a unique solution, B must be full rank. B is full rank for very mild conditions on the input data. For example, in two dimensions, three centers forming a non-degenerate triangle ensure that B is full rank, and in three dimensions, four centers forming a non-degenerate tetrahedron ensure that B is full rank. As explained later, the linear transformation resulting from the restriction of the domain of the linear transformation A to the null space of B T is positive definite. This means that if B is full rank, the system of equations (2) always has a unique solution and it can be solved using the Cholesky decomposition after a suitable transformation. The computed weights allow evaluation of the spline for any x R d using equation (1). Many practical details of implementing and using polyharmonic splines are explained in Fasshauer. In Iske polyharmonic splines are treated as special cases of other multiresolution methods in scattered data modelling.

    Reason for the name "polyharmonic"

    A polyharmonic equation is a partial differential equation of the form Δ m f = 0 for any natural number m . For example, the biharmonic equation is Δ 2 f = 0 and the triharmonic equation is Δ 3 f = 0 . All the polyharmonic radial basis functions are solutions of a polyharmonic equation (or more accurately, a modified polyharmonic equation with a Dirac delta function on the right hand side instead of 0). For example, the thin plate radial basis function is a solution of the modified 2-dimensional biharmonic equation. Applying the 2D Laplace operator ( Δ = x x + y y ) to the thin plate radial basis function f tp ( x , y ) = ( x 2 + y 2 ) log x 2 + y 2 either by hand or using a computer algebra system shows that Δ f tp = 4 + 4 log r . Applying the Laplace operator to Δ f tp (this is Δ 2 f tp ) yields 0. But 0 is not exactly correct. To see this, replace r 2 = x 2 + y 2 with ρ 2 = x 2 + y 2 + h 2 (where h is some small number tending to 0). The Laplace operator applied to 4 log ρ yields Δ 2 f tp = 8 h 2 / ρ 4 . For ( x , y ) = ( 0 , 0 ) , the right hand side of this equation approaches infinity as h approaches 0. For any other ( x , y ) , the right hand side approaches 0 as h approaches 0. This indicates that the right hand side is a Dirac delta function. A computer algebra system will show that

    lim h 0 8 h 2 / ( x 2 + y 2 + h 2 ) 2 d x d y = 8 π .

    So the thin plate radial basis function is a solution of the equation Δ 2 f tp = 8 π δ ( x , y ) .

    Applying the 3D Laplacian ( Δ = x x + y y + z z ) to the biharmonic RBF f bi ( x , y , z ) = x 2 + y 2 + z 2 yields Δ f bi = 2 / r and applying the 3D Δ 2 operator to the triharmonic RBF f tri ( x , y , z ) = ( x 2 + y 2 + z 2 ) 3 / 2 yields Δ 2 f tri = 24 / r . Letting ρ 2 = x 2 + y 2 + z 2 + h 2 and computing Δ ( 1 / ρ ) = 3 h 2 / ρ 5 again indicates that the right hand side of the PDEs for the biharmonic and triharmonic RBFs are Dirac delta functions. Since

    lim h 0 3 h 2 / ( x 2 + y 2 + z 2 + h 2 ) 5 / 2 d x d y d z = 4 π ,

    the exact PDEs satisfied by the biharmonic and triharmonic RBFs are Δ 2 f bi = 8 π δ ( x , y , z ) and Δ 3 f tri = 96 π δ ( x , y , z ) .

    Polyharmonic smoothing splines

    Polyharmonic splines minimize

    where B is some box in R d containing a neighborhood of all the centers, λ is some positive constant, and m f is the vector of all m th order partial derivatives of f . For example, in 2D 1 f = ( f x   f y ) and 2 f = ( f x x   f x y   f y x   f y y ) and in 3D 2 f = ( f x x   f x y   f x z   f y x   f y y   f y z   f z x   f z y   f z z ) . In 2D | 2 f | 2 = f x x 2 + 2 f x y 2 + f y y 2 , making the integral the simplified thin plate energy functional.

    To show that polyharmonic splines minimize equation (3), the fitting term must be transformed into an integral using the definition of the Dirac delta function:

    i = 1 N ( f ( c i ) f i ) 2 = B i = 1 N ( f ( x ) f i ) 2 δ ( x c i ) d x .

    So equation (3) can be written as the functional

    J [ f ] = B F ( x , f , α 1 f , α 2 f , α n f ) d x = B [ i = 1 N ( f ( x ) f i ) 2 δ ( x c i ) + λ | m f | 2 ] d x .

    where α i is a multi-index that ranges over all partial derivatives of order m for R d . In order to apply the Euler-Lagrange equation for a single function of multiple variables and higher order derivatives, the quantities

    F f = 2 i = 1 N ( f ( x ) f i ) δ ( x x i )

    and

    i = 1 m 2 α i F ( α i f ) = 2 λ Δ m f

    are needed. Inserting these quantities into the E-L equation shows that

    A weak solution f ( x ) of (4) satisfies

    for all smooth test functions g that vanish outside of B . A weak solution of equation (4) will still minimize (3) while getting rid of the delta function through integration.

    Let f be a polyharmonic spline as defined by equation (1). The following calculations will show that f satisfies (5). Applying the Δ m operator to equation (1) yields

    Δ m f = i = 1 M w i C m , d δ ( x c i )

    where C 2 , 2 = 8 π , C 2 , 3 = 8 π , and C 3 , 3 = 96 π . So (5) is equivalent to

    The only possible solution to (6) for all test functions g is

    (which implies interpolation if λ = 0 ). Combining the definition of f in equation (1) with equation (7) results in almost the same linear system as equation (2) except that the matrix A is replaced with A + ( 1 ) m C m , d λ I where I is the N × N identity matrix. For example, for the 3D triharmonic RBFs, A is replaced with A + 96 π λ I .

    Explanation of additional constraints

    In (2), the bottom half of the system of equations ( B T w = 0 ) is given without explanation. The explanation first requires deriving a simplified form of B | m f | 2 d x when B is all of R d .

    First, require that i = 1 N w i = 0. This ensures that all derivatives of order m and higher of f ( x ) = i = 1 N w i ϕ ( | x c i | ) vanish at infinity. For example, let m = 3 and d = 3 and ϕ be the triharmonic RBF. Then ϕ z z y = 3 y ( x 2 + y 2 ) / ( x 2 + y 2 + z 2 ) 3 / 2 (considering ϕ as a mapping from R 3 to R ). For a given center P = ( P 1 , P 2 , P 3 ) ,

    ϕ z z y ( x P ) = 3 ( y P 2 ) ( ( y P 2 ) 2 + ( x P 1 ) 2 ) ( ( x P 1 ) 2 + ( y P 2 ) 2 + ( z P 3 ) 2 ) 3 / 2 .

    On a line x = a + t b for arbitrary point a and unit vector b ,

    ϕ z z y ( x P ) = 3 ( a 2 + b 2 t P 2 ) ( ( a 2 + b 2 t P 2 ) 2 + ( a 1 + b 1 t P 1 ) 2 ) ( ( a 1 + b 1 t P 1 ) 2 + ( a 2 + b 2 t P 2 ) 2 + ( a 3 + b 3 t P 3 ) 2 ) 3 / 2 .

    Dividing both numerator and denominator of this by t 3 shows that lim t ϕ z y y ( x P ) = 3 b 2 ( b 2 2 + b 1 2 ) / ( b 1 2 + b 2 2 + b 3 2 ) 3 / 2 , a quantity independent of the center P . So on the given line,

    lim t f z y y ( x ) = lim t i = 1 N w i ϕ z y y ( x c i ) = ( i = 1 N w i ) 3 b 2 ( b 2 2 + b 1 2 ) / ( b 1 2 + b 2 2 + b 3 2 ) 3 / 2 = 0.

    It is not quite enough to require that i = 1 N w i = 0 , because in what follows it is necessary for f α g β to vanish at infinity, where α and β are multi-indices such that | α | + | β | = 2 m 1. For triharmonic ϕ , w i u j ϕ α ( x c i ) ϕ β ( x d j ) (where u j and d j are the weights and centers of g ) is always a sum of total degree 5 polynomials in x , y , and z divided by the square root of a total degree 8 polynomial. Consider the behavior of these terms on the line x = a + t b as t approaches infinity. The numerator is a degree 5 polynomial in t . Dividing numerator and denominator by t 4 leaves the degree 4 and 5 terms in the numerator and a function of b only in the denominator. A degree 5 term divided by t 4 is a product of five b coordinates and t . The w = 0 (and u = 0 ) constraint makes this vanish everywhere on the line. A degree 4 term divided by t 4 is either a product of four b coordinates and an a coordinate or a product of four b coordinates and a single c i or d j coordinate. The w = 0 constraint makes the first type of term vanish everywhere on the line. The additional constraints i = 1 N w i c i = 0 will make the second type of term vanish.

    Now define the inner product of two functions f , g : R d R defined as a linear combination of polyharmonic RBFs ϕ m , d with w = 0 and w c = 0 as

    < f , g >= R d ( m f ) ( m g ) d x .

    Integration by parts shows that

    For example, let m = 2 and d = 2. Then

    Integrating the first term of this by parts once yields

    f x x g x x d x d y = f x g x x | d y f x g x x x d x d y = f x g x x x d x d y

    since f x g x x vanishes at infinity. Integrating by parts again results in f g x x x x d x d y .

    So integrating by parts twice for each term of (9) yields

    < f , g >= f ( g x x x x + 2 g x x y y + g y y y y ) d x d y = f ( Δ 2 g ) d x d y .

    Since ( Δ m f ) ( x ) = i = 1 N w i C m , d δ ( x c i ) , (8) shows that

    < f , f > = ( 1 ) m R d f ( x ) i = 1 N w i ( 1 ) m C m , d δ ( x c i ) d x = ( 1 ) m C m , d i = 1 N w i f ( c i ) = ( 1 ) m C m , d i = 1 N j = 1 N w i w j ϕ ( c i c j ) = ( 1 ) m C m , d w T A w .

    So if w = 0 and w c = 0 ,

    Now the origin of the constraints B T w = 0 can be explained. Here B is a generalization of the B defined above to possibly include monomials up to degree m 1. In other words,

    B = [ 1 1 1 c 1 c 2 c N c 1 m 1 c 2 m 1 c N m 1 ] T

    where c i j is a column vector of all degree j monomials of the coordinates of c i . The top half of (2) is equivalent to A w + B v f = 0. So to obtain a smoothing spline, one should minimize the scalar field F : R N + d + 1 R defined by

    F ( w , v ) = | A w + B v f | 2 + λ C w T A w .

    The equations

    F w i = 2 A i ( A w + B v f ) + 2 λ C A i w = 0 for   i = 1 , 2 , , N

    and

    F v i = 2 B i T ( A w + B v f ) = 0 for   i = 1 , 2 , , d + 1

    (where A i denotes row i of A ) are equivalent to the two systems of linear equations A ( A w + B v f + λ C w ) = 0 and B T ( A w + B v f ) = 0. Since A is invertible, the first system is equivalent to A w + B v f + λ C w = 0. So the first system implies the second system is equivalent to B T w = 0. Just as in the previous smoothing spline coefficient derivation, the top half of (2) becomes ( A + λ C I ) w + B v = f .

    This derivation of the polyharmonic smoothing spline equation system did not assume the constraints necessary to guarantee that R d | m f | 2 d x = C w T A w . But the constraints necessary to guarantee this, w = 0 and w c = 0 , are a subset of B T w = 0 which is true for the critical point w of F . So R d | m f | 2 d x = C w T A w is true for the f formed from the solution of the polyharmonic smoothing spline equation system. Because the integral is positive for all w 0 , the linear transformation resulting from the restriction of the domain of linear transformation A to w such that B T w = 0 must be positive definite. This fact enables transforming the polyharmonic smoothing spline equation system to a symmetric positive definite system of equations that can be solved twice as fast using the Cholesky decomposition.

    Examples

    The next figure shows the interpolation through four points (marked by "circles") using different types of polyharmonic splines. The "curvature" of the interpolated curves grows with the order of the spline and the extrapolation at the left boundary (x < 0) is reasonable. The figure also includes the radial basis functions phi = exp(-r2) which gives a good interpolation as well. Finally, the figure includes also the non-polyharmonic spline phi = r2 to demonstrate, that this radial basis function is not able to pass through the predefined points (the linear equation has no solution and is solved in a least squares sense).

    The next figure shows the same interpolation as in the first figure, with the only exception that the points to be interpolated are scaled by a factor of 100 (and the case phi = r2 is no longer included). Since phi = (scale*r)k = (scalek)*rk, the factor (scalek) can be extracted from matrix A of the linear equation system and therefore the solution is not influenced by the scaling. This is different for the logarithmic form of the spline, although the scaling has not much influence. This analysis is reflected in the figure, where the interpolation shows not much differences. Note, for other radial basis functions, such as phi = exp(-k*r2) with k=1, the interpolation is no longer reasonable and it would be necessary to adapt k.

    The next figure shows the same interpolation as in the first figure, with the only exception that the polynomial term of the function is not taken into account (and the case phi = r2 is no longer included). As can be seen from the figure, the extrapolation for x < 0 is no longer as "natural" as in the first figure for some of the basis functions. This indicates, that the polynomial term is useful if extrapolation occurs.

    Discussion

    The main advantage of polyharmonic spline interpolation is that usually very good interpolation results are obtained for scattered data without performing any "tuning", so automatic interpolation is feasible. This is not the case for other radial basis functions. For example, the Gaussian function e k r 2 needs to be tuned, so that k is selected according to the underlying grid of the independent variables. If this grid is non-uniform, a proper selection of k to achieve a good interpolation result is difficult or impossible.

    Main disadvantages are:

  • To determine the weights, a dense linear system of equations must be solved. Solving a dense linear system becomes impractical if the dimension N is large, since the memory required is O ( N 2 ) and the number of operations required is O ( N 3 ) .
  • Evaluating the computed polyharmonic spline function at M data points requires O ( M N ) operations. In many applications (image processing is an example), M is much larger than N , and if both numbers are large, this is not practical.
  • Recently, methods have been developed to overcome the aforementioned difficulties. For example Beatson et al. present a method to interpolate polyharmonic splines at one point in 3 dimensions in O ( log N ) operations instead of O ( N ) operations.

    References

    Polyharmonic spline Wikipedia