添加链接
link之家
链接快照平台
  • 输入网页链接,自动生成快照
  • 标签化管理网页链接
我想将散乱点云数据插值成规则网格,使用以下matlab程序loadall.ascX=all;x=X(:,1);y=X(:,2);z=X(:,3);cx=min(x):2:... 我想将散乱点云数据插值成规则网格,使用以下matlab程序
load all.asc
X = all;
x = X(:,1);
y = X(:,2);
z = X(:,3);
cx=min(x):2:max(x);cy=min(y):2:max(y);
[CX,CY]=meshgrid(cx,cy);
CZ=griddata(x,y,z,CX,CY,'cubic');
mesh(CX,CY,CZ);
所得CZ在边界处出现NAN,应该如何改进?谢谢。
在等... 没有griddata的具体实现算法方面的信息,但是插值原理应该是基于散乱数据点生成局部区域的插值查询。而且这个插值似乎是要求“内插”的,即查询点必须处于输入样本XY的”包围“状态中,否则就会报NaN查询结果。

matlab 2012a中的帮助是这样说的:
The method defines the type of surface fit to the data. The 'cubic' and 'v4' methods produce smooth surfaces while 'linear' and 'nearest' have discontinuities in the first and zero'th derivatives, respectively. All the methods except 'v4' are based on a Delaunay triangulation of the data. If method is [], then the default 'linear' method is used.

Occasionally, griddata might return points on or very near the convex hull of the data as NaNs. This is because roundoff in the computations sometimes makes it difficult to determine if a point near the boundary is in the convex hull.

========================================
所以这个问题无法避免。(虽然实测使用nearest方法没有产生NaN,但因没有解读其算法,不确定是否绝对不出现NaN结果)

如果只是为了绘出有效数据,把结果CZ中的NaN数据删掉就行了。
如果想得到所有的CZ值,把NaN结果全部取出来,相应的CX,CY重新用nearest方法查询一次。或者自己写一个允许用近邻点外推插值的算法对其特殊处理。但还是会与griddata内部方法产生较大偏差,影响结果的”平滑性“。