1 / 6

Three Step Geometric Pipeline

This tool enables grid sampling, surface generation using zero-crossing interpolation, and triangle generation based on the Marching Cubes algorithm. It also includes outlier computation, consensus surface algorithm, and octree-based voxel splitting for efficient volumetric modeling.

tmorton
Download Presentation

Three Step Geometric Pipeline

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Three Step Geometric Pipeline

  2. VolumetricModeling • Grid sampling of an implicit surface • Generate surface by zero-crossing interpolation inside surface outside surface surface

  3. Marching Cubes Algorithm • Lorensen and Cline(’87) • f(x) given to each vertex x: • if , vertex x is outside of the object. • if , vertex x is inside of the object. • Generate triangles to meet the above rule

  4. f(x) f(x) f(x’) f(x’) signed distance Outlier Compute Scalar Value • Naive Algorithm • Compute the magnitude: compute the distance f(x), to the nearest object surface from x • Compute the sign: determine whether the point is inside or outside of the object

  5. Consensus Surface Algorithm • Compute consensus surface: comparing using the location and surface normal • Compute f(x) by averaging signed-distances

  6. Octree-based Voxel Splitting • If subdivide the current octant • The octree reduces the computation O(n3) to O(n2)

More Related