Struggling to create a suitable watertight mesh using Open3D from point cloud data #3913
Replies: 4 comments
-
same problem! input mesh data: full code: the mesh is still not watertight after using fill_holes(). |
Beta Was this translation helpful? Give feedback.
-
Facing the same problem. Can anyone help? All of these 3 surface reconstriction methods fail to present decent results. |
Beta Was this translation helpful? Give feedback.
-
We are working on this. We will provide a solution asap. |
Beta Was this translation helpful? Give feedback.
-
Hi, |
Beta Was this translation helpful? Give feedback.
-
Hi there, I am trying to create a watertight mesh out of point cloud representing organ contour data from cone beam CT images. My goal is to take two meshes and calculate the volume of intersection between the two of them.
I have tried using each of the methods shown here
Poisson Reconstruction
While this method seemingly leads to a watertight mesh to my eye, the result of mesh.is_watertight() is False, however for the Bladder data it returns True. Furthermore, the algorithm extends the mesh above and below the vertical limits of the data. Wile this isn't a deal breaking issue if there were a way to minimize it that would be great.
Ball Pivoting
This would be my preferred method if I were able to fill the holes as it simply connects vertices without interpolation.
Alpha Shapes
The results from this are similar to ball pivoting but worse.
ct_prostate_contour_data.csv
ct_rectum_contour_data.csv
ct_bladder_contour_data.csv
Beta Was this translation helpful? Give feedback.
All reactions