Python 中的 Delaunay 曲面细分?
我需要在 Python 中找到多边形的 Delaunay 细分,并且我能找到的唯一库(Delny、scikit)对点云进行三角剖分,而不是多边形。有什么建议吗?
I need to find the Delaunay tessellation of a polygon in Python, and the only libraries I could find (Delny, scikits) triangulate point clouds, not polygons. Any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
显然 Triangle 有一个 Python 绑定。我会尽力让它发挥作用
Apparently Triangle has a Python binding. I'll try to get it working
根据维基百科的 文章,Delaunay 三角剖分是为一组点定义的,而不是为多边形定义的。您能否将多边形点集传递到这些库之一中?
According to Wikipedia's article, the Delaunay triangulation is defined for a set of points, not for a polygon. Could you just pass the set of the polygon's points into one of those libraries?
您是否尝试过 matplotlib.delaunay.interpolate 链接文本 或 Delny 链接文本?
Have you tried matplotlib.delaunay.interpolate link text or Delny link text?