1 / 67

Voronoi Diagram

Voronoi Diagram. Presenter: GI1 11 號 蔡逸凡 Reference: Computational Geometry ch7 ISBN: 3-540-65620-0. Outline. Introduction Definitions Incremental Algorithm Fortune ’ s Algorithm Hardware Algorithm Applications. Where do people go to shop?

gari
Download Presentation

Voronoi Diagram

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. Voronoi Diagram Presenter: GI1 11號 蔡逸凡 Reference: Computational Geometry ch7 ISBN: 3-540-65620-0

  2. Outline • Introduction • Definitions • Incremental Algorithm • Fortune’s Algorithm • Hardware Algorithm • Applications

  3. Where do people go to shop? Which location is suitable for new store? 7-11 Shoppers … Assumptions • price is the same at every site • cost = price + transportation • transportation = (Euclidean distance)  (price per unit distance) • consumers try to minimize the cost. Figure 7.1 The trading areas of the capitals of the twelve provinces in the Netherlands, as predicted by the Voronoi assignment model

  4. Introduction (cont) • Fire observation towers • Towers on fire • Facility location: center of largest empty circle • Path planning: stay as far away from all obstacles as possible

  5. Definitions • Vor(P) [Voronoi diagram of P]: subdivision of the plane into n cells, one for each site in P, • [Voronoi cell of pi]:the cell of Vor(P) that corresponds to a site pi • V(P): the set of all points that have more than one nearest neighbor

  6. bisector h (p, q) h (q, p) Definition (Cont) p3 p2 p1 Circumcircle of p1p2p3 Two sites Three sites

  7. Observation 7.1

  8. Theorem 7.2 • Let P be a set of n point sites in the plane. If all the sites are collinear then Vor(P) consists of n-1 parallel lines. Otherwise, Vor(P) is connected and its edges are either segments or half-lines.

  9. Theorem 7.3 • For n≧3, the number of vertices in the Voronoi diagram of a set of n point sites in the plane is at most 2n-5 and the number of edges is at most 3n-6. Give a bound to number of Voronoi edges and vertices

  10. not contain any site of P CP(q): largest empty circle of q w.r.t. P • To characterize which bisectors and intersections define features of the Voronoi diagram we make the following:

  11. q Theorem 7.4 • For the Voronoi diagram Vor(P) of a set of points P the following holds: (i) A point q is a vertex of Vor(P) if and only if its largest CP(q) empty circle contains three or more sites on its boundary.

  12. q Theorem 7.4 (Cont) (ii) The bisector between sites pi and pj defines an edge of Vor(P) if and only if there is a point q on the bisector such that CP(q) contains both pi and pj on its boundary but no other site.

  13. q Theorem 7.4 (Cont) (ii) The bisector between sites pi and pj defines an edge of Vor(P) if and only if there is a point q on the bisector such that CP(q) contains both pi and pj on its boundary but no other site.

  14. Incremental Algorithm • Suppose that we have already built the Voronoi diagram Vp-1, and would like to add a new sites sp. First, find the site, say si, whose Voronoi polygon contains sp, and draw the perpendicular bisector between sp and si, denoted by B(sp, si). • The bisector crosses the boundary of V(si) at two points, point x1 and point x2. Site sp is to the left of the directed line segment x1x2. The line segment x1x2 divides the Voronoi polygon V(si) into two pieces, the one on the left belonging to the Voronoi polygon of sp. Thus, we get a Voronoi edge on the boundary of the Voronoi polygon of si.

  15. Incremental Algorithm-2 • Starting with the edge x1x2, expand the boundary of the Voronoi polygon of sl by the following procedure. The B(si, sl) crosses the boundary of V(si) at x2, entering the adjacent Voronoi polygon, say V(sj). Therefore, next draw the B(si, sj), and find the point, x3, at which the bisector crosses the boundary of V(sj). Similarly, find the sequence of segments of perpendicular bisectors of s and the neighboring sites until we reach the starting point x1. • Let this sequence be (x1x2, x2x3, …, xm-1xm, xmx1). This sequence forms a CCW boundary of the Voronoi polygon of the new site s. • Finally, we delete from Vp-1 the substructure inside the new Voronoi polygon, and thus get Vp.

  16. Example

  17. Example

  18. Example

  19. Example

  20. Example O(n) per point insertion Total complexity: O(n2)

  21. Complexity • The method describe before: per Voronoi cell: total: • plane sweep algorithm— Fortune’s algorithm:

  22. Fortune’s Algorithm (1985) • Use plane sweep to explore the Voronoi structure The loci of equal distance points between the focus and the directrix is a parabola Sweep line

  23. Fortune (cont) • As the sweep line moves, more parabolas got generated • The intersection between parabola is the trace of equal distance point between the two sites Beach line: monotone union of parabolic arcs Break point: where two arcs meet

  24. Site Event (Voronoi Edge) • The branch starts when the sweep line first touches the site, forming a degenerate parabola (a line)

  25. Circle Event (Voronoi Vertex) • The Voronoi edge comes to an end when the circumcircle pass the sweep line • At such points, the corresponding arc got removed from the beach line

  26. q s1 s3 s2 q Plane Sweep Algorithm (Cont) • :sweep line • :The closed half-plane above • 12

  27. beach line breakpoint Plane Sweep Algorithm (Cont)

  28. p1 p4 p3 p2 Observation 7.5 • The beach line is x-monotone, that is, every vertical line intersects it in exactly one point.

  29. Process – Site event • When reaching a new site, we consider the events where a new arc appears on the beach line

  30. What happen to the Voronoi diagram at a site event? Process – Site event (Cont)

  31. Lemma 7.6 • The only way in which a new arc can appear on the beach line is through a site event.

  32. Process – Circle event

  33. Lemma 7.7 • The only way in which an existing arc can disappear from the beach line is through a circle event.

  34. Does not define a potential circle event False alarm The detection of circle event

  35. This circle event helps to terminate the Voronoi edges Sweep line intersects the circumcircle

  36. This, however, does not generate circle event: cir.circle does not intersect sweep line [site coincide w/ circle event]

  37. Summary • Site event: encounter a new site - get new arc • Circle event: • A new triple has converging breakpoint – has a circle event insert into the event queue • The new arc is in the middle – never cause • Check disappear triples that have circle event – false alarm, delete it from event queue

  38. Structure • Event queue: the priority of an event is its y-coordinate • Site event: store the site • Circle event: lowest point of the circle • Doubly-connected edge list • Binary search tree T

  39. breakpoint Site that define the arc Structure (Cont) Binary search tree T

  40. p3 p1 p2 p1 Example 1 Q={p1,p2,p3} D={} Q={p2,p3} D={} T:

  41. <p2,p1>->e1 p1 p2 Example 1 (Cont) Q={p3} D={e1} T:

  42. e1<-<p2,p1> p2 p1 p3 Example 1 (Cont) Q={} D={e1,e2} T: <p1,p3>->e2

  43. e1<-<p2,p1> p2 p1 p3 c1 Example 1 (Cont) Q={c1} D={e1,e2} <p1,p3>->e2 T:

  44. e3<-<p2,p3> p2 p3 Example 1 (Cont) Q={} D={e1,e2,e3} T:

  45. e3<-<p2,p3> p2 p3 Example 1 (Cont) Q={} D={e1,e2,e3} T: A visual implementation of Fortune's Voronoi algorithm

  46. p1 Example 2 Q={p1,p2,p3,p4} D={} Q={p2,p3,p4} D={} T:

  47. <p1,p2>->e1 p2 p1 Example 2 (Cont) Q={p3,p4} D={e1} T:

  48. e2<-<p3,p1> e2<-<p3,p1> p3 p3 p1 p1 p2 p2 c1 Example 2 (Cont) Q={c1,p4} D={e1,e2} <p1,p2>->e1 Q={p4} D={e1,e2} T: T: <p1,p2>->e1

  49. e3<-<p3,p2> e4<-<p3,p4> p3 p3 p2 p4 p2 Example 2 (Cont) Q={p4} D={e1,e2,e3} T: Q={} D={e1,e2,e3 e4,e5} T: <p4,p2>->e5

  50. e4<-<p3,p4> p3 p4 p2 Example 2 (Cont) Q={} D={e1,e2,e3 e4,e5} T: <p4,p2>->e5

More Related