-
Notifications
You must be signed in to change notification settings - Fork 58
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
point cloud reconstruction example #2
Comments
Thanks for the suggestion! Let me try to update this feature in one week. |
Thanks for the help :) |
A fundamental way is to change several things in the code including voxel-point intersection and nearest neighbor selection, which could take a while. However, there is an easy way to work around with the current code, which is what I did in my experiment: First, I use CGAL's jet_estimate_normals to compute point normals. Then, for each point I create a very small triangle (consistent with the estimated normal), setting the point as the center. And now we convert N points to a triangle soup with N triangles and we can run our algorithm. |
the workaround seems nice, I will give it a try! |
Hey @hjwdzh ,
Thanks for sharing your great work.
I am wondering if you provide the examples of reconstruction from range scan (and processed into a point cloud) as shown in Fig. 13 in your paper.
thx a lot.
The text was updated successfully, but these errors were encountered: