Delaunay 三角剖分

发布于 2024-09-25 08:40:12 字数 8247 浏览 25 评论 0

Delaunay Triangle

Delaunay 三角剖分特点:

最小角最大:在不出现奇异性的情况下,Delaunay 三角剖分最小角之和均大于任何非 Delaunay 剖分所形成三角形最小角之和 ,三角形的最小内角之和最大 ,从而使得划分的三角形不会出现某个内角过小的情况 ,比较有利于有限元的后续计算。
空外接圆:Delaunay 三角剖分中任意三角形的外接圆内不包括其他结点。因此 ,在各种二维三角剖分中 ,只有 Delaunay 三角剖分才同时满足全局和局部最优。

Delaunay 三角剖分优点:

1.最接近:以最近的三点组成三角形,且三角形各边皆不相交。
2.唯一性:不论从何处区域开始构建,最终结果唯一。
3.最优解:任意两个相邻三角形形成的凸四边形的对角线若可以互换,那么两个三角形六个内角中最小的角度不会变大。
4.最规则:若将三角网中的每个三角形的最小角进行升序排列,则 Delaunay 三角网的排列得到的数值最大。
5.区域性:新增、删除、移动某一个顶点时只会影响临近的三角形。
6.具有凸多边形的外壳:三角网最外层的边界形成一个凸多边形的外壳。

Voronoi 图

离散点集 P 的 Delaunay 三角剖分和离散点集 P 的 Voronoi 图为 对偶图 的关系。

Delaunay 三角形的外心是 Voronoi 图的顶点。

对偶图:设 G 是平面图,在图 G 的每个面中指定一个新节点,对两个面公共的边,指定一条新边与其相交。由这些新结点和新边组成的图为 G 的对偶图。

图中的蓝色虚线的图是红色实线的对偶图:

Duals_graphs

Delaunay 三角形和其外接圆与圆心:

Delaunay_circumcircles_centers

连接外接圆圆心生成 Voronoi 图:

Delaunay_Voronoi

Delaunay 三角剖分算法

Delaunay 三角剖分常见算法:翻边算法、分割归并法、逐点插入算法、三角网增长法。本文从常见的逐点插入的 Bowyer-Watson 算法来理解。

《Triangulate》 里对该方法进行了分析,给出了伪代码:

subroutine triangulate
input : vertex list
output : triangle list
initialize the triangle list
determine the supertriangle
add supertriangle vertices to the end of the vertex list
add the supertriangle to the triangle list
for each sample point in the vertex list
initialize the edge buffer
for each triangle currently in the triangle list
calculate the triangle circumcircle center and radius
if the point lies in the triangle circumcircle then
add the three triangle edges to the edge buffer
remove the triangle from the triangle list
endif
endfor
delete all doubly specified edges from the edge buffer
this leaves the edges of the enclosing polygon only
add to the triangle list all triangles formed between the point
and the edges of the enclosing polygon
endfor
remove any triangles from the triangle list that use the supertriangle vertices
remove the supertriangle vertices from the vertex list
end

因该算法效率不高,因此有网上给的优化后的伪代码:

input: 顶点列表(vertices)                       //vertices 为外部生成的随机或乱序顶点列表
output:已确定的三角形列表(triangles)
    初始化顶点列表
    创建索引列表(indices = new Array(vertices.length))    //indices 数组中的值为 0,1,2,3,......,vertices.length-1
    基于 vertices 中的顶点 x 坐标对 indices 进行 sort         //sort 后的 indices 值顺序为顶点坐标 x 从小到大排序(也可对 y 坐标,本例中针对 x 坐标)
    确定超级三角形
    将超级三角形保存至未确定三角形列表(temp triangles)
    将超级三角形 push 到 triangles 列表
    遍历基于 indices 顺序的 vertices 中每一个点           //基于 indices 后,则顶点则是由 x 从小到大出现
      初始化边缓存数组(edge buffer)
      遍历 temp triangles 中的每一个三角形
        计算该三角形的圆心和半径
        如果该点在外接圆的右侧
          则该三角形为 Delaunay 三角形,保存到 triangles
          并在 temp 里去除掉
          跳过
        如果该点在外接圆外(即也不是外接圆右侧)
          则该三角形为不确定           //后面会在问题中讨论
          跳过
        如果该点在外接圆内
          则该三角形不为 Delaunay 三角形
          将三边保存至 edge buffer
          在 temp 中去除掉该三角形
      对 edge buffer 进行去重
      将 edge buffer 中的边与当前的点进行组合成若干三角形并保存至 temp triangles 中
    将 triangles 与 temp triangles 进行合并
    除去与超级三角形有关的三角形
end

Bowyer-Watson 算法

基本思想:

1.构造一个超级三角形,包含所有的散点,存入三角形链表
2.将点集中的离散点依次插入,在三角形链表中找出外接圆包含插入点的三角形(称为该点的影响三角形),删除影响三角形的公共边,将插入点同影响三角形的全部顶点连接起来,完成一个点在 Delaunay 三角形链表中的插入。
3.根据优化准则对局部新形成的三角形优化。将形成的三角形放入 Delaunay 三角形链表。
4.循环执行步骤 2,直到所有离散点插入完毕。

图示:(来自 百度百科 )

d009b3de9c82d1582789d194800a19d8bc3e4288.jpg

借助三个点理解一遍。

Snipaste_2019-11-28_09-57-39.png

根据离散点的最大分布得到一个随机超级三角形(即该三角形包含了整个离散点集 P),并将超级三角形放入 temp triangles 中

Snipaste_2019-11-28_10-01-38.png

接下来对 temp triangle 中的三角形遍历画外接圆,这时先对左边第一个点 a 进行判断,其在圆内所以该三角形不为 Delaunay 三角形,将其三边保存至 edge buffer 中,temp triangles 中删除该三角形

Snipaste_2019-11-28_10-03-32.png

将 a 点与 edge buffer 中的每一个边相连,组成三个三角形,存入 temp triangles 中

Delaunay 三角剖分/Snipaste_2019-11-28_10-05-40.png

再将重复对 temp triangles 的遍历并画外接圆,这时使用的是 b 点来进行判断

  • b 点在三角形 1 外接圆右侧,则表示左侧三角形为 Delaunay 三角形,将该三角形保存至 triangles 中
  • b 点在三角形 2 外接圆外侧,为不确定三角形,跳过(后面处理),但并不在 temp triangles 中删除
  • b 点在三角形 3 外接圆内侧,则这时向清空后的 edge buffer 加入该三角形的三条边,并用 b 点与 edge buffer 中的三角边进行组合,组合成了三个三角形并加入到 temp triangles 中

这时,temp buffer 中有六条边,triangles 中有两个三角形,temp triangles 中有 1 个三角形

对 temp buffer 中的六条边进行去重,得到五条边,将该点与这五条边组合成五个三角形并加入到 temp triangles 中,这时 temp triangles 中有 6 个三角形

Delaunay 三角剖分/Snipaste_2019-11-28_10-13-35.png

由于三个点已经遍历结束,到了不会再对第三个点形成的三角形做外接圆,这时则将 triangles 与 temp triangles 合并,合并后的数组表示包含已经确定的 Delaunay 三角形和剩下的三角形

这时除去合并后数组中的和超级三角形三个点有关的所有三角形,即进行数组坐标的限定,则得到了最后的结果:

Snipaste_2019-11-28_10-18-12.png

Code

Delaunay-Cpp

References

http://www.cs.cmu.edu/~quake/triangle.html
https://people.sc.fsu.edu/~jburkardt/c_src/triangle/triangle.html
https://www.cnblogs.com/zhiyishou/p/4430017.html
https://en.wikipedia.org/wiki/Delaunay_triangulation
http://local.wasp.uwa.edu.au/~pbourke/papers/triangulate/index.html
http://local.wasp.uwa.edu.au/~pbourke/papers/triangulate/cpp.zip
https://github.com/obviousjim/ofxDelaunay
https://github.com/delfrrr/delaunator-cpp/blob/master/include/delaunator.hpp

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

关于作者

梦太阳

暂无简介

0 文章
0 评论
22 人气
更多

推荐作者

玍銹的英雄夢

文章 0 评论 0

我不会写诗

文章 0 评论 0

十六岁半

文章 0 评论 0

浸婚纱

文章 0 评论 0

qq_kJ6XkX

文章 0 评论 0

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文