Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要在 Python 中找到多边形的 Delaunay 镶嵌,以及我能找到的唯一库(Delny,scikits)对点云进行三角剖分,而不是多边形。有什么建议么?
显然Triangle有一个 Python 绑定。我会努力让它工作
根据维基百科的文章,Delaunay 三角剖分是为一组点定义的,而不是为多边形定义的。您可以将多边形点的集合传递到其中一个库中吗?
Have you tried matplotlib.delaunay.interpolate link text or Delny link text?