yblin/global_l0

How to render the awesome figures (4、5、8) in your paper?

iamwangyabin opened this issue · 2 comments

The figures in your paper show awesome results. However, I find your code can get planes from pointcloud but how to reconstruct using this information? Would you please kindly let me know how to reconstruct these plane models (software and strategies)? This will probably save a lot of my life searching and learning!

Thanks!

yblin commented

Sorry for late reply.

The figures (4, 5, 8) are rendered by keyshot (https://www.keyshot.com/)

It needs to first convert the plane points to mesh. You can do it using structured_points algorithm (see point_cloud/structured_points.h) or other reconstruction methods.

Is there a convenient way to convert the result of StructuredPoints() (see point_cloud/structured_points.h) as input of CGAL's reconstruction algorithm to generate a mesh? (see Advancing_front_surface_reconstruction/reconstruction_structured.cpp

Thanks!