I have to confess that I am really confused about the available code and algorithms for 3D spline interpolation. For my application I need a path: given some point, defined in 3D space, I need to interpolate them using a spline function (cubic, bezier, etc...). Research on the internet did not yield me a solution, only more confusion.
This algorithm caught my attention algorithm. It defines some 3D points (using MATLAB):
[X, Y, Z] = meshgrid(x, y, z);
and then calls the MATLAB interpolation function:
s = exp(-sqrt(X.^2 + Y.^2 + Z.^2));
sinterp = interp3(x, y, z, s, 0., 0., 0.)
What is the function s for!? The interpolation clearly just needs three points and that's all. What is this function for?
Since I m a C++ programmer I was trying to use the following alglib library which comes up with some useful functions. But even there 3 points aren't sufficient, I have to invoke a function that I don't know.
In my application the 3D points are scattered randomly in space as follows picture. My problem doesn't presume that I need a function for joining the points. Even if I do need it, I don't know how to define it.
What is wrong in how I am approaching this problem? Am I using the wrong library functions? or am I supposed to have a function for spline generation? If yes, how to do I get this function?
Regards
interp3() is supposed to do interpolation for volumetric data points (Xi, Yi, Zi, Si), i=1~N. It will generate a function S=f(X, Y, Z). This is the reason why it needs the additional input 's' as noted in your post.
When you encounter an interpolation problem/algorithm, the first thing you need to figure out is what kind of function you are looking for. Namely, whether the function is univariate (y=f(x)), bivariate (z=f(x,y)) or multivariate ( s=f(x, y, z, ....) ). For your particular problem where you want to interpolate a series of 3D points using a spline, basically it is a univariate interpolation problem. However, since a space curve cannot be represented as y=f(x), the spline function will be represented in parametric form as S(t)=(x(t), y(t), z(t)).
There are many ways for doing spline interpolation thru 3D data points. Among them, the two algorithms that are very easy to implement are Catmull Rom spline and Overhauser spline. Both are cubic spline and differ only in how the first derivatives at the data points are estimated. You can google them to find out the details.