You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, Thank you for your amazing work. I have a couple of questions -
when running python main.py --config configs/config_demo.yaml - generate a bunch of ply files which are point clouds, can any parameter be changed in the config file or in the code to get a bunch of mesh files?
trying to generate mesh using - python render/o3d_render_pcl.py --model_name SCALE_demo_00000_simuskirt and modifying to mesh = o3d.io.read_triangle_mesh(fn) using an idea from this issue #4 generate a warning message - [Open3D WARNING] geometry::TriangleMesh appears to be a geometry::PointCloud (only contains vertices, but no triangles) and generates empty white images.
Can you kindly help generate meshes instead of point clouds from your pipeline.
The text was updated successfully, but these errors were encountered:
The SCALE model is a point-based model; the output from the code is always a point set. To get a mesh, you can run mesh reconstruction algorithms such as Poisson Surface Reconstruction, on the output point set. This can be done in e.g. Meshlab.
Hi, Thank you for your amazing work. I have a couple of questions -
python main.py --config configs/config_demo.yaml
- generate a bunch of ply files which are point clouds, can any parameter be changed in the config file or in the code to get a bunch of mesh files?python render/o3d_render_pcl.py --model_name SCALE_demo_00000_simuskirt
and modifying tomesh = o3d.io.read_triangle_mesh(fn)
using an idea from this issue #4 generate a warning message - [Open3D WARNING] geometry::TriangleMesh appears to be a geometry::PointCloud (only contains vertices, but no triangles) and generates empty white images.Can you kindly help generate meshes instead of point clouds from your pipeline.
The text was updated successfully, but these errors were encountered: