Surface Reconstruction: Difference between revisions

From David's Wiki
(Created page with "Surface reconstruction is the process of converting a point cloud into a mesh. ==Explicit Reconstruction== The idea here is to just connect the points to form triangles. ==Implicit Reconstruction== The idea here is to first estimate a signed distance field from the point cloud and then do marching cubes to generate a mesh. ==Resources== * [https://www.hao-li.com/cs599-ss2015/slides/Lecture06.2.pdf Hao Li lecture slides] * [https://graphics.stanford.edu/papers/zipper/...")
 
(No difference)

Latest revision as of 16:04, 6 March 2024

Surface reconstruction is the process of converting a point cloud into a mesh.

Explicit Reconstruction

The idea here is to just connect the points to form triangles.


Implicit Reconstruction

The idea here is to first estimate a signed distance field from the point cloud and then do marching cubes to generate a mesh.

Resources