我使用DelaunayTri()
中的Matlab R2010b
计算了Delaunay三角剖分。现在我想将三角形的子集(即12200个三角形)刻录成矩阵(Raster)。有没有快速/有效的方法呢?
我尝试使用poly2mask()
和inpolygon()
来选择三角形内的像素,但这相当慢。
答案 0 :(得分:0)
我实施了这个快速解决方案:
qrypts=[xgridcoords, ygridccords]; %grid x and y coordinates
triids = pointLocation(dt, qrypts); %associate each grid point to its Delaunay triangle
Lia = ismember(triids,dtsubset); %keep subset of points contained in the desired triangles (dtsubset contains the indices of desired triangles)
IM=false(size(grid));
IM(Lia)=1;