POINT CLOUD , SURFACE RECONSTRUCTION

Feel free to ask any question here
Post Reply
pointMan
Posts: 1
Joined: Fri Jan 27, 2012 12:38 pm

POINT CLOUD , SURFACE RECONSTRUCTION

Post by pointMan »

hi ,
i have raw point set. [about an object]. i want generate mesh from this point set.
What's the most efficient method for this ??? how to use cclib for this problem[simple console app, point file in , mesh file out] ?
thnx .....
daniel
Site Admin
Posts: 7396
Joined: Wed Oct 13, 2010 7:34 am
Location: Grenoble, France
Contact:

Re: POINT CLOUD , SURFACE RECONSTRUCTION

Post by daniel »

Hi,

CloudCompare is mainly meant to be used with clouds, the mesh part in general and more especially the meshing algorithms are not very powerfull. In CCLib, the only meshing algorithms available are 2D Delaunay triangulation (either in one default plane (XY,XZ or YZ) or in the least square best-fit plane. Anyway, it's just an encapsulation of the 'triangle' library (so you could directly call it - see http://www.cs.cmu.edu/~quake/triangle.html). Otherwise, a more advanced algorithm is accessible via a plugin (qPoissonRecon) but it's not in CCLib (and once again, it would be faster to call the Misha Kazhdan's Poisson Surface Reconstruction library directly http://www.cs.jhu.edu/~misha/Code/PoissonRecon/).
Daniel, CloudCompare admin
jfhullo
Posts: 90
Joined: Thu Oct 14, 2010 7:16 am

Re: POINT CLOUD , SURFACE RECONSTRUCTION

Post by jfhullo »

Hi,

for this use, I recommend you the use of MeshLab which is widely used, albeit buggy, for meshing. MeshLab: meshlab.sourceforge.net/

JF
Post Reply