46
1/61 Department of Computer Science and Engineering Tamal K. Dey The Ohio State University Delaunay Refinement and Its Localization for Meshing

1/61 Department of Computer Science and Engineering Tamal K. Dey The Ohio State University Delaunay Refinement and Its Localization for Meshing

Embed Size (px)

Citation preview

Page 1: 1/61 Department of Computer Science and Engineering Tamal K. Dey The Ohio State University Delaunay Refinement and Its Localization for Meshing

1/61Department of Computer Science and Engineering

Tamal K. Dey

The Ohio State University

Delaunay Refinement and Its Localization for Meshing

Page 2: 1/61 Department of Computer Science and Engineering Tamal K. Dey The Ohio State University Delaunay Refinement and Its Localization for Meshing

2/61Department of Computer Science and Engineering

Delaunay Mesh Generation

• Automatic mesh generation with good quality.

• Delaunay refinements:• The Delaunay triangulation

lends to a proof structure.• And it naturally optimizes

certain geometric properties.

Page 3: 1/61 Department of Computer Science and Engineering Tamal K. Dey The Ohio State University Delaunay Refinement and Its Localization for Meshing

3/61Department of Computer Science and Engineering

Basics of Delaunay Refinement

• Pioneered by Chew89, Ruppert92, Shewchuck98

• To mesh some domain D,1. Initialize a set of points S D, compute Del S.

2. If some condition is not satisfied, insert a point c from |D| into S and repeat step 2.

3.Return Del S.

• Burden is to show that the algorithm terminates (shown by a packing argument).

Page 4: 1/61 Department of Computer Science and Engineering Tamal K. Dey The Ohio State University Delaunay Refinement and Its Localization for Meshing

4/61Department of Computer Science and Engineering

Delaunay Triangulations

For a finite point set S R3 let p S:Voronoi cell of p:

Vp = set of all points in R3 closer to p than any other point in S.

Voronoi k-face:Intersection of 4-k Voronoi cells.

Voronoi Diagram:Vor S = collection of all Voronoi faces.

Delaunay j-simplex:Convex hull of j+1 points which define a

Voronoi (3-j)-face.

Delaunay Triangulation:Del S = collection of Delaunay simplices.

Page 5: 1/61 Department of Computer Science and Engineering Tamal K. Dey The Ohio State University Delaunay Refinement and Its Localization for Meshing

5/61Department of Computer Science and Engineering

Restricted Delaunay

• If the point set is sampled from a domain D.

• We can define the restricted Delaunay triangulation, denoted Del S|D.• Each simplex Del S|D is the dual

of a Voronoi face V that has a nonempty intersection with the domain D.

• Condition to drive Delaunay refinement often uses the restricted Delaunay triangulation as an approximation for D

Page 6: 1/61 Department of Computer Science and Engineering Tamal K. Dey The Ohio State University Delaunay Refinement and Its Localization for Meshing

6/61Department of Computer Science and Engineering

Polyhedral Meshing

• Output mesh conforms to input:• All input edges meshed as a

collection of Delaunay edges.• All input facets are meshed with a

collection of Delaunay triangles.• Algorithms with angle

restrictions:• Chew89, Ruppert92, Miller-Talmor-

Teng-Walkington95, Shewchuk98.• Small angles allowed:

• Shewchuk00, Cohen-Steiner-Verdiere-Yvinec02, Cheng-Poon03, Cheng-Dey-Ramos-Ray04, Pav-Walkington04.

Page 7: 1/61 Department of Computer Science and Engineering Tamal K. Dey The Ohio State University Delaunay Refinement and Its Localization for Meshing

8/61Department of Computer Science and Engineering

Smooth Surface Meshing

• Input mesh is either an implicit surface or a polygonal mesh approximating a smooth surface

• Output mesh approximates input geometry, conforms to input topology:• No guarantees:

• Chew93.• Skin surfaces:

• Cheng-Dey-Edelsbrunner-Sullivan01.

• Provable surface algorithms:• Boissonnat-Oudot03 and Cheng-

Dey-Ramos-Ray04.• Interior Volumes:

• Oudot-Rineau-Yvinec06.

Page 8: 1/61 Department of Computer Science and Engineering Tamal K. Dey The Ohio State University Delaunay Refinement and Its Localization for Meshing

9/61Department of Computer Science and Engineering

Local Feature Size (Smooth)

• Local feature size is calculated using the medial axis of a smooth shape.

• f(x) is the distance from a point to the medial axis

• S is an ε-sample of D if any point x of D has a sample within distance εf(x).

Page 9: 1/61 Department of Computer Science and Engineering Tamal K. Dey The Ohio State University Delaunay Refinement and Its Localization for Meshing

10/61Department of Computer Science and Engineering

Homeomorphism and Isotopy

• Homeomorphsim: A function f between two topological spaces:• f is a bijection

• f and f-1 are both continuous

• Isotopy: A continuous deformation maintaining homeomorphism

Page 10: 1/61 Department of Computer Science and Engineering Tamal K. Dey The Ohio State University Delaunay Refinement and Its Localization for Meshing

12/61Department of Computer Science and Engineering

Sampling Theorem

Theorem (Boissonat-Oudot 2005):

If S M is a discrete sample of a smooth surface M so that each x where a Voronoi edge intersects M lies within ef(x) distance from a sample, then for e<0.09, the restricted Delaunay triangulation Del S|M has the following properties:

(i) It is homeomorphic to M (even isotopic).

(ii) Each triangle has normal aligning within O(e) angle to the surface normals

(iii) Hausdorff distance between M and Del S|M is O(e2) of the local feature size.

Theorem:(Amenta-Bern 98, Cheng-Dey-Edelsbrunner-Sullivan 01)

If S M is a discrete e-sample of a smooth surface , Mthen for e< 0.09 the restricted Delaunay triangulation Del S|M has the following properties:

Sampling Theorem Modified

Page 11: 1/61 Department of Computer Science and Engineering Tamal K. Dey The Ohio State University Delaunay Refinement and Its Localization for Meshing

13/61Department of Computer Science and Engineering

Basic Delaunay Refinement

1. Initialize a set of points S M, compute Del S.

2. If some condition is not satisfied, insert a point c from M into S and repeat step 2.

3. Return Del S|M.

Surface Delaunay Refinement

2. If some Voronoi edge intersects M at x with d(x,S)> ef(x) insert x in S.

Page 12: 1/61 Department of Computer Science and Engineering Tamal K. Dey The Ohio State University Delaunay Refinement and Its Localization for Meshing

14/61Department of Computer Science and Engineering

Difficulty

• How to compute f(x)?• Special surfaces such as

skin surfaces allow easy computation of f(x) [CDES01]

• Can be approximated by computing approximate medial axis, needs a dense sample.

Page 13: 1/61 Department of Computer Science and Engineering Tamal K. Dey The Ohio State University Delaunay Refinement and Its Localization for Meshing

15/61Department of Computer Science and Engineering

A Solution

• Replace d(x,S)< ef(x) with d(x,S)<l, an user parameter

• But, this does not guarantee any topology

• Require that triangles around vertices form topological disks [Cheng-Dey-Ramos 04]

• Guarantees that output is a manifold

Page 14: 1/61 Department of Computer Science and Engineering Tamal K. Dey The Ohio State University Delaunay Refinement and Its Localization for Meshing

16/61Department of Computer Science and Engineering

A Solution

1. Initialize a set of points S M, compute Del S.

2. If some Voronoi edge intersects M at x with d(x,S)>ef(x) insert x in S, and repeat step 2.

2. (b)If restricted triangles around a vertex p do not form a topological disk, insert furthest x where a dual Voronoi edge of a triangle around p intersects M.

3. Return Del S|M.

2. (a) If some Voronoi edge intersects M at x with d(x,S)> l insert x in S, and repeat step 2(a).

Algorithm DelSurf(M,l)

X=center of largest Surface Delaunay ballx

Page 15: 1/61 Department of Computer Science and Engineering Tamal K. Dey The Ohio State University Delaunay Refinement and Its Localization for Meshing

17/61Department of Computer Science and Engineering

A MeshingTheorem

Theorem:

The algorithm DelSurf produces output mesh with the following guarantees:

(i) The output mesh is always a 2-manifold

(ii) If l is sufficiently small, the output mesh satisfies topological and geometric guarantees:

1. It is related to M with an isotopy. 2. Each triangle has normal aligning within O(l) angle to the

surface normals

3. Hausdorff distance between S and Del S|M is O(l2) of the local feature size.

Page 16: 1/61 Department of Computer Science and Engineering Tamal K. Dey The Ohio State University Delaunay Refinement and Its Localization for Meshing

18/61Department of Computer Science and Engineering

Implicit surface

Page 17: 1/61 Department of Computer Science and Engineering Tamal K. Dey The Ohio State University Delaunay Refinement and Its Localization for Meshing

19/61Department of Computer Science and Engineering

Remeshing

Page 18: 1/61 Department of Computer Science and Engineering Tamal K. Dey The Ohio State University Delaunay Refinement and Its Localization for Meshing

20/61Department of Computer Science and Engineering

PSCs – A Large Input Class[Cheng-Dey-Ramos 07]

• Piecewise smooth complexes (PSCs) include:• Polyhedra• Smooth Surfaces• Piecewise-smooth Surfaces• Non-manifolds

&

Page 19: 1/61 Department of Computer Science and Engineering Tamal K. Dey The Ohio State University Delaunay Refinement and Its Localization for Meshing

22/61Department of Computer Science and Engineering

Protecting Ridges

Page 20: 1/61 Department of Computer Science and Engineering Tamal K. Dey The Ohio State University Delaunay Refinement and Its Localization for Meshing

25/61Department of Computer Science and Engineering

DelPSC Algorithm[Cheng-Dey-Ramos-Levine 07,08]

DelPSC(D, λ)1. Protect ridges of D using protection balls. 2. Refine in the weighted Delaunay by turning the balls

into weighted points.

1.Refine a triangle if it has orthoradius > l.2.Refine a triangle or a ball if disk condition is violated3.Refine a ball if it is too big.

3. Return i Deli S|Di

Page 21: 1/61 Department of Computer Science and Engineering Tamal K. Dey The Ohio State University Delaunay Refinement and Its Localization for Meshing

26/61Department of Computer Science and Engineering

Guarantees for DelPSC

1. Manifold• For each σ D2, triangles in Del

S|σ are a manifold with vertices only in σ. Further, their boundary is homeomorphic to bd σ with vertices only in σ.

2. Granularity• There exists some λ > 0 so that

the output of DelPSC(D, λ) is homeomorphic to D.

• This homeomorphism respects stratification, For 0 ≤ i ≤ 2, and σ Di, Del S|σ is homemorphic to σ too.

Page 22: 1/61 Department of Computer Science and Engineering Tamal K. Dey The Ohio State University Delaunay Refinement and Its Localization for Meshing

27/61Department of Computer Science and Engineering

Reducing λ

Page 23: 1/61 Department of Computer Science and Engineering Tamal K. Dey The Ohio State University Delaunay Refinement and Its Localization for Meshing

29/61Department of Computer Science and Engineering

Examples

Page 24: 1/61 Department of Computer Science and Engineering Tamal K. Dey The Ohio State University Delaunay Refinement and Its Localization for Meshing

31/61Department of Computer Science and Engineering

Examples

Page 25: 1/61 Department of Computer Science and Engineering Tamal K. Dey The Ohio State University Delaunay Refinement and Its Localization for Meshing

32/61Department of Computer Science and Engineering

Localized Delaunay Refinement

Page 26: 1/61 Department of Computer Science and Engineering Tamal K. Dey The Ohio State University Delaunay Refinement and Its Localization for Meshing

33/61Department of Computer Science and Engineering

Delaunay Refinement Limitations

•Traditional refinement maintains Delaunay triangulation in memory

•This does not scale well•Causes memory thrashing

•May be aborted by OS

Page 27: 1/61 Department of Computer Science and Engineering Tamal K. Dey The Ohio State University Delaunay Refinement and Its Localization for Meshing

34/61Department of Computer Science and Engineering

Localization

•A simple algorithm that avoids the scaling issues of the Delaunay triangulation•Avoids memory thrashing

•Topological and geometric guarantees

•Guarantee of termination

•Potentially parallelizable

Page 28: 1/61 Department of Computer Science and Engineering Tamal K. Dey The Ohio State University Delaunay Refinement and Its Localization for Meshing

35/61Department of Computer Science and Engineering

A Natural Solution

•Use an octree T to divide S and process points in each node v of T separately

Page 29: 1/61 Department of Computer Science and Engineering Tamal K. Dey The Ohio State University Delaunay Refinement and Its Localization for Meshing

36/61Department of Computer Science and Engineering

Two Concerns

• Termination

• Mesh consistency

Page 30: 1/61 Department of Computer Science and Engineering Tamal K. Dey The Ohio State University Delaunay Refinement and Its Localization for Meshing

37/61Department of Computer Science and Engineering

Termination Trouble

•A locally furthest point in node v can be very close to a point in other nodes

Page 31: 1/61 Department of Computer Science and Engineering Tamal K. Dey The Ohio State University Delaunay Refinement and Its Localization for Meshing

38/61Department of Computer Science and Engineering

Messing Mesh Consistency

• Individual meshes do not blend consistently across boundaries

Page 32: 1/61 Department of Computer Science and Engineering Tamal K. Dey The Ohio State University Delaunay Refinement and Its Localization for Meshing

39/61Department of Computer Science and Engineering

LocDel Algorithm: Overview

•Process nodes from a queue Q

•Refines nodes with parameter λ if there are violations

Page 33: 1/61 Department of Computer Science and Engineering Tamal K. Dey The Ohio State University Delaunay Refinement and Its Localization for Meshing

41/61Department of Computer Science and Engineering

Splitting

Page 34: 1/61 Department of Computer Science and Engineering Tamal K. Dey The Ohio State University Delaunay Refinement and Its Localization for Meshing

42/61Department of Computer Science and Engineering

Refining node

•Augment

•Assemble R=NUS

•Compute Del R|M

•Refine•Surface Delaunay

ball larger than λ

•Fp Del R|M is not a disk

Page 35: 1/61 Department of Computer Science and Engineering Tamal K. Dey The Ohio State University Delaunay Refinement and Its Localization for Meshing

44/61Department of Computer Science and Engineering

Modified Point Insertions

•Modified insertion strategy• If nearest point s

ϵ S to p* is within λ/8 and s ≠ p, then add s to R

•Else add p* to R

•p* augments S, but s does not

Page 36: 1/61 Department of Computer Science and Engineering Tamal K. Dey The Ohio State University Delaunay Refinement and Its Localization for Meshing

46/61Department of Computer Science and Engineering

Reprocessing nodes for Consistency

•Needed for mesh consistency•Suppose s is added

•Enqueue each node ' ≠ s.t. d(s, ') ≤ 2λ

Page 37: 1/61 Department of Computer Science and Engineering Tamal K. Dey The Ohio State University Delaunay Refinement and Its Localization for Meshing

47/61Department of Computer Science and Engineering

Maintaining light structures

• For each node keep:• S = S ∩

•Up ϵ S Fp

• Output: union of surface stars Up ϵ S Fp

Page 38: 1/61 Department of Computer Science and Engineering Tamal K. Dey The Ohio State University Delaunay Refinement and Its Localization for Meshing

48/61Department of Computer Science and Engineering

Termination

• insertions are finite, so are enqueues and splits

• Augmenting R by an existing point does not grow S

• Consider inserting a new point s•Nearest point ≠ p → at least λ/8 from S

• Insertion due to triangle size → at least λ from S

• Else → at least εM from S by our result in Voronoi point sampling:

Page 39: 1/61 Department of Computer Science and Engineering Tamal K. Dey The Ohio State University Delaunay Refinement and Its Localization for Meshing

50/61Department of Computer Science and Engineering

Mesh Theorem for Localization

Theorem:

•output mesh is a 2-manifold without boundary for any .l

•Each point in the output is within distance λ of M

• λ*>0 s.t. if λ<λ* the output is isotopic to M with Hausdorff distance of O(λ2)

Page 40: 1/61 Department of Computer Science and Engineering Tamal K. Dey The Ohio State University Delaunay Refinement and Its Localization for Meshing

57/61Department of Computer Science and Engineering

Results

Page 41: 1/61 Department of Computer Science and Engineering Tamal K. Dey The Ohio State University Delaunay Refinement and Its Localization for Meshing

58/61Department of Computer Science and Engineering

Results

Page 42: 1/61 Department of Computer Science and Engineering Tamal K. Dey The Ohio State University Delaunay Refinement and Its Localization for Meshing

59/61Department of Computer Science and Engineering

Localized Volume Meshing (SGP 2011)

• Extension of LocDel to volume meshing• Leverage existing results for proofs

• Dey-Levine-Slatton 10

• Oudot-Rineau-Yvinec 05

• We prove• Termination

• Geometric closeness of output to input

• For small λ:• Output is isotopic to input• Hausdorff distance O(λ2)

Page 43: 1/61 Department of Computer Science and Engineering Tamal K. Dey The Ohio State University Delaunay Refinement and Its Localization for Meshing

60/61Department of Computer Science and Engineering

LocVol

Page 44: 1/61 Department of Computer Science and Engineering Tamal K. Dey The Ohio State University Delaunay Refinement and Its Localization for Meshing

61/61Department of Computer Science and Engineering

LocVol

Page 45: 1/61 Department of Computer Science and Engineering Tamal K. Dey The Ohio State University Delaunay Refinement and Its Localization for Meshing

62/61Department of Computer Science and Engineering

Conclusions

Localized versions with certified geometry and topology

Localized versions for PSCs (open)

Software available from

http://www.cse.ohio-state.edu/~tamaldey/surfremesh.html

http://www.cse.ohio-state.edu/~tamaldey/delpsc.html

http://www.cse.ohio-state.edu/~tamaldey/locdel.html

Acknowledgement: NSF, CGAL

A book Delaunay Mesh Generation: S.-W. Cheng, T. Dey, J. Shewchuk (2012)

Page 46: 1/61 Department of Computer Science and Engineering Tamal K. Dey The Ohio State University Delaunay Refinement and Its Localization for Meshing

63/61Department of Computer Science and Engineering

Thank You!