CGAL / cgal

The public CGAL repository, see the README below
https://github.com/CGAL/cgal#readme
Other
5k stars 1.39k forks source link

Poisson surface reconstruction wrong output #4753

Open xieanne opened 4 years ago

xieanne commented 4 years ago

Please use the following template to help us solving your issue.

Issue Details

I used the source code for surface reconstruction from point cloud and the kitten.xyz was reconstructed nicely but when I import another geometry of my own, the poisson reconstructed surface does not even close up the points, im wondering what could possibly be the problems that caused it? problem This point cloud supposed to be a section of a tunnel as shown below original

Environment

afabri commented 4 years ago

Your point set is too sparse for this kind of algorithm. Also it will not produce a mesh going through your points.

xieanne commented 4 years ago

Is this point set too sparse as well? image Because the reconstructed surface looks like this image

Also, for the simplification portion of code, it seems like it always says 0 points removed after simplification even when i purposely make the duplicate points in the point set, and even if I pass in a 300,000 points for a point set, it still says 0 points removed after simplification.