我有一个数据点网格,我目前使用双线性插值来查找网格中的缺失点。我被指出了 Kriging aka thee best linear unbiased estimator 的方向,但我找不到好的源代码或代数解释。有谁知道我可以使用的任何其他插值方法?
--更新@Sam Greenhalgh 我考虑过双三次插值,但使用我找到的代码示例收到的结果似乎不对。
这是 Bicubic 的代码示例
请注意,我使用 C# 进行编码,但我也欢迎其他语言的示例。
//array 4
double cubicInterpolate(double[] p, double x)
{
return p[1] + 0.5 * x * (p[2] - p[0] + x * (2.0 * p[0] - 5.0 * p[1] + 4.0 * p[2] - p[3] + x * (3.0 * (p[1] - p[2]) + p[3] - p[0])));
}
//array 4 4
public double bicubicInterpolate(double[][] p, double x, double y)
{
double[] arr = new double[4];
arr[0] = cubicInterpolate(p[0], y);
arr[1] = cubicInterpolate(p[1], y);
arr[2] = cubicInterpolate(p[2], y);
arr[3] = cubicInterpolate(p[3], y);
return cubicInterpolate(arr, x);
}
double[][] p = {
new double[4]{2.728562594,2.30599759,1.907579158,1.739559264},
new double[4]{3.254756633,2.760758022,2.210417411,1.979012766},
new double[4]{4.075740069,3.366434527,2.816093916,2.481060234},
new double[4]{5.430966401,4.896723504,4.219613391,4.004306461}
};
Console.WriteLine(CI.bicubicInterpolate(p, 2, 2));