加权 Delaunay 三角剖分的 Alpha 形状
我正在寻找一种算法来解决 2D 和 3D 中加权 delaunay 三角剖分(假设我们有加权 DT)的 alpha 形状。我查看了一些提供复杂解释的在线链接。如果我能得到带有良好解释的算法伪代码,那就太好了。
I am looking for an algorithm to solve alpha shapes from weighted delaunay triangulation (assuming we have weighted DT) in 2D and 3D. I've looked at a few online links that provide complicated explanations. It'll be great if i can get pseudo code of the algorithm with good explanation.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以尝试使用提供 3D 和 2D 加权 alpha 形状的 CGAL。
3D 示例可在此处获取<一href="http://www.cgal.org/Manual/latest/doc_html/cgal_manual/Alpha_shapes_3/Chapter_main.html#Subsection_42.5.4" rel="nofollow">此处。
2D 情况类似。
You can try to use CGAL that provides both 3D and 2D weighted alpha-shapes.
Examples in 3D are available here and here.
The 2D case is similar.
Alpha形状是alpha值并且每条边都超过alpha。因此您可以删除这些边缘。我认为不需要dt。加权 dt。
Alpha shapes is alpha value and every edges exceeding alpha. Hence you can remove those edges. I don't think it needs dt. a weighted dt.