qhull 的不规则三角网络
我想使用 qhull 从 3D 点(每个文件中大约 700 万个)创建 TIN。
谁能建议一个我可以看到如何做到这一点的地方?谢谢!
I wanted to create TINs from 3D points (about 7 million in every file) using qhull.
can anyone suggest a place where i could probably see how to do this? thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我从未使用过 QHull,因为它很难作为库集成到现有项目中。尝试三角形;它专门用于 2D 并且非常易于使用(它附带了如何从其他 C 代码调用它的示例)。
I've never used QHull since it is hard to integrate as a library into an existing project. Try out Triangle; it is specialized for 2D and is very easy to use (it comes with an example of how to call it from other C code).
我可以向您推荐一个名为Delaunay Triangulations 的流计算的软件包。在普通计算机上它可以计算
在性能方面:
以下是有关其工作原理的预告图片:
您可以查看此 < href="http://www.cs.unc.edu/~isenburg/sd/download/sd_video.avi" rel="nofollow noreferrer">视频解释他们的方法/软件。
I could recommend you a software package called Streaming Computation of Delaunay Triangulations. On a normal computer it can compute
In terms of performance:
Here is teaser image on how it works:
You can check out this video explaining their method/software.
Wiki 说,
MATLAB 可以生成 3-D Delaunay 曲面细分 和 nD Delaunay 曲面细分 使用 Qhull。
(来源:mathworks.com)
Wiki says,
MATLAB can generate 3-D Delaunay tesselation and n-D Delaunay tesselation using Qhull.
(source: mathworks.com)