2

I have a set of points that need to be constructed as a set of triangular faces to form a solid mesh. I have looked at Delaunay Triangulation and none of it makes sense. Any advice on where to begin? I am not dealing with complex shapes, they consist of 200 vertices max.

Note: the points are in x,y,z space.

4

1 に答える 1

5

頂点からメッシュを構築するためのさまざまなオプションがあります:

1: ポアソン再構成を使用できます http://www.cs.jhu.edu/~misha/Code/PoissonRecon/Version5.7/
オープン ソースのメッシュラボも実装されています。 http://gmv.cast.uark.edu/scanning/point-clouds-to-mesh-in-meshlab/および PCL http://pointclouds.org/

2: もう 1 つのオプションは、マーチング キューブです。 PCL での実装

于 2014-02-17T12:28:58.833 に答える