incremental construction of constrained delaunay
play

Incremental Construction of Constrained Delaunay Triangulations - PowerPoint PPT Presentation

Incremental Construction of Constrained Delaunay Triangulations Jonathan Richard Shewchuk Computer Science Division University of California Berkeley, California, USA 1 7 3 10 0 9 4 6 8 5 2 The Delaunay Triangulation An edge is


  1. Incremental Construction of Constrained Delaunay Triangulations Jonathan Richard Shewchuk Computer Science Division University of California Berkeley, California, USA 1 7 3 10 0 9 4 6 8 5 2

  2. The Delaunay Triangulation An edge is locally Delaunay if the two triangles sharing it have no vertex in each others’ circumcircles. A Delaunay triangulation is a triangulation of a point set in which every edge is locally Delaunay.

  3. Constraining Edges Sometimes we need to force a triangulation to contain specified edges. Nonconvex shapes; internal boundaries Discontinuities in interpolated functions

  4. 2 Ways to Recover Segments Conforming Delaunay triangulations Edges are all locally Delaunay. n Ω Worst−case input needs ( ) to ² n 2.5 O( ) extra vertices. Constrained Delaunay triangulations (CDTs) Edges are locally Delaunay or are domain boundaries.

  5. Goal segments Input: planar straight line graph (PSLG) Output: constrained Delaunay triangulation (CDT) Every edge is locally Delaunay except segments.

  6. Randomized Incremental CDT Construction Start with Delaunay triangulation of vertices.

  7. Randomized Incremental CDT Construction Start with Delaunay triangulation of vertices. Do segment location. Insert segment.

  8. Randomized Incremental CDT Construction Start with Delaunay triangulation of vertices. Do segment location. Insert segment.

  9. Randomized Incremental CDT Construction Start with Delaunay triangulation of vertices. Do segment location. Insert segment.

  10. Randomized Incremental CDT Construction Start with Delaunay triangulation of vertices. Do segment location. Insert segment.

  11. Randomized Incremental CDT Construction Start with Delaunay triangulation of vertices. Do segment location. Insert segment.

  12. Randomized Incremental CDT Construction Start with Delaunay triangulation of vertices. Do segment location. Insert segment.

  13. Randomized Incremental CDT Construction Start with Delaunay triangulation of vertices. Do segment location. Insert segment.

  14. Topics Inserting a segment in expected linear time. Randomized incremental CDT construction n k Θ 2 in expected ) time. ( log # of vertices # of segments Upper bound: Agarwal/Arge/Yi. Lower bound: new. Inserting a polygon into a 3D CDT.

  15. CDT Construction Algorithms Divide−and−conquer [Chew 1987, 1989]. n n Ο ) time. ( log Plane sweep [Seidel 1988]. n log n Ο ) time. ( Randomized incremental segment insertion. n log n n k Ο 2 Expected ) time. ( + log # of vertices # of segments

  16. Why Incremental? It’s what everyone implements in practice. (Easiest to implement.) Leverages the best DT implementations. The n k 2 term is pessimistic. log

  17. Topics Inserting a segment in expected linear time. Randomized incremental CDT construction n k Θ 2 in expected time. ( log ) # of vertices # of segments Upper bound: Agarwal/Arge/Yi. Lower bound: new. Inserting a polygon into a 3D CDT.

  18. Segment Insertion cavity cavity

  19. Edge Flips

  20. Chew’s Algorithm Computes DT of a convex polygon in expected linear time. flip non−locally Delaunay edges Randomized incremental vertex insertion

  21. Backward Analysis Idea: analyze an algorithm as if it were running backward in time. Pretend we remove a randomly chosen vertex from the final triangulation. Its expected degree is < 4. Randomized incremental vertex insertion

  22. Backward Analysis Idea: analyze an algorithm as if it were running backward in time. Pretend we remove a randomly chosen vertex from the final triangulation. Its expected degree is < 4. Expected time to insert one vertex = constant. Expected time to compute Del tri = linear.

  23. Retriangulating a Segment Cavity 1 9 4 7 5 8 6 3 2 10 0 1 7 3 10 0 9 4 6 8 5 2

  24. How Our Algorithm Differs from Chew’s 7 5 Polygons with dangling edges. 6 10 0 Always insert segment endpoints first. An intermediate polygon can self−intersect. CDT triangles are deleted for 2 reasons: new vertex in circumcircle; new edges cross.

  25. Topics Inserting a segment in expected linear time. Randomized incremental CDT construction n k Θ 2 in expected ) time. ( log # of vertices # of segments Upper bound: Agarwal/Arge/Yi. Lower bound: new. Inserting a polygon into a 3D CDT.

  26. Coupon Collecting 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 Shuffle numbered coupons in random order. 6 12 7 9 14 3 5 15 11 1 10 8 13 2 4 How often do we collect a coupon preceded by every larger coupon? k Θ ( Expected ) times. log

  27. Coupon Collecting 5 5 5 5 5 4 4 4 4 3 3 3 2 2 1 Shuffle numbered coupons in random order. 2 5 4 4 5 3 3 5 1 2 3 4 5 5 4 How often is the first collection of a coupon preceded by (one of) every larger coupon? 2 ) times. k Θ ( Expected log

  28. Lower Bound Example Θ ( k ) pulling vertices 2 k segments 3 1 n Θ ( ) pushing vertices

  29. Lower Bound Example Θ ( k ) pulling vertices 2 k segments 3 1 n Θ ( ) pushing vertices

  30. Lower Bound Example Θ ( k ) pulling vertices 2 k segments 3 1 Θ n k 2 ( log ) edges deleted. n Θ ( ) pushing vertices

  31. Topics Inserting a segment in expected linear time. Randomized incremental CDT construction n k Θ 2 in expected time. ( log ) # of vertices # of segments Upper bound: Agarwal/Arge/Yi. Lower bound: new. Inserting a polygon into a 3D CDT.

  32. Polygon Insertion

  33. Some Polyhedra Have No Tetrahedralization Schönhardt’s polyhedron

  34. Some Polyhedra Have No Tetrahedralization Any four vertices of Schönhardt’s polyhedron yield a tetrahedron that sticks out a bit.

  35. Input: A Piecewise Linear Complex PLC A set of vertices, segments, and polygons. CDT Each polygon appears as a union of triangular faces.

  36. The Delaunay Triangulation An edge is locally Delaunay if the two triangles sharing it have no vertex in each others’ circumcircles. A triangular face is locally Delaunay if the two tetrahedra sharing it have no vertex in each others’ circumspheres.

  37. Constrained Delaunay Triangulations (CDTs) A tetrahedralization of a polyhedron/PLC is a CDT if every triangular face not included in an input polygon is locally Delaunay.

  38. The CDT Theorem (makes 3D CDTs useful) Say that a PLC is edge−protected if every segment has an enclosing ball that contains no vertex but the segment’s endpoints. Theorem: Every edge−protected PLC has a CDT.

  39. Bistellar Flips

  40. Seidel’s Parabolic Lifting Map The 3D DT matches the lower convex hull of the vertices lifted E onto a paraboloid in 4 .

  41. Convex Hull of Moving Points As the lifted vertices move vertically, use flips to maintain the lower convex hull.

  42. A Lifted CDT constraining segment reflex edge Lifted triangulation is convex everywhere except at constraining segments.

  43. ‘‘Polygon’’ Insertion in 1D by Flips Let’s insert this ‘‘polygon’’! Lifted vertices rise at a velocity proportional to distance from ‘‘polygon.’’ 1D triangulation CDT

  44. ‘‘Polygon’’ Insertion in 2D by Flips 1 2 3 4 Lift vertices at speed proportional to distance from new segment. Maintain lower convex hull with flips. 5

  45. Running Time for Polygon Insertion Worst−case time to insert one polygon: O( n ² log n )

  46. Running Time: Lower Bound Θ n ) tetrahedra cut ( ²

  47. Running Time for Polygon Insertion Worst−case time to insert one polygon: O( n ² log n ) Worst−case time to insert any number of polygons and construct a CDT: n n ) O( ² log

  48. Running Time: Upper Bound Every bistellar flip either creates or deletes an edge. Once deleted, an edge never reappears.

  49. Open Problems (Theoretical) Does any incremental insertion algorithm run n n Θ in time? E.g. biased random? ( log ) Upper bound does not depend on Delaunay property! Other optimal triangulations?

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend