computational geometry
play

Computational Geometry Lecture 2: Line segment intersection for map - PowerPoint PPT Presentation

Motivation Line segment intersection Plane sweep Line segment intersection for map overlay Computational Geometry Lecture 2: Line segment intersection for map overlay 1 Computational Geometry Lecture 2: Line segment intersection for map


  1. Motivation Line segment intersection Plane sweep Line segment intersection for map overlay Computational Geometry Lecture 2: Line segment intersection for map overlay 1 Computational Geometry Lecture 2: Line segment intersection for map overlay

  2. Motivation Line segment intersection Map overlay Plane sweep Map layers In a geographic information system (GIS) data is stored in separate layers A layer stores the geometric information about some theme, like land cover, road network, municipality boundaries, red fox habitat, ... 2 Computational Geometry Lecture 2: Line segment intersection for map overlay

  3. Motivation Line segment intersection Map overlay Plane sweep Map overlay Map overlay is the combination of two (or more) map layers It is needed to answer questions like: What is the total length of roads through forests? What is the total area of corn fields within 1 km from a river? What area of all lakes occurs at the geological soil type “rock”? 3 Computational Geometry Lecture 2: Line segment intersection for map overlay

  4. Motivation Line segment intersection Map overlay Plane sweep Map overlay To solve map overlay questions, we need (at the least) intersection points from two sets of line segments (possibly, boundaries of regions) 4 Computational Geometry Lecture 2: Line segment intersection for map overlay

  5. Motivation Problem Line segment intersection Output-sensitive algorithms Plane sweep Some attempts The (easy) problem Let’s first look at the easiest version of the problem: Given a set of of n line segments in the plane, find all intersection points efficiently 5 Computational Geometry Lecture 2: Line segment intersection for map overlay

  6. Motivation Problem Line segment intersection Output-sensitive algorithms Plane sweep Some attempts An easy, optimal algorithm? Algorithm FindIntersections ( S ) Input. A set S of line segments in the plane. Output. The set of intersection points among the segments in S . 1. for each pair of line segments e i , e j ∈ S 2. do if e i and e j intersect 3. then report their intersection point Question: Why can we say that this algorithm is optimal? 6 Computational Geometry Lecture 2: Line segment intersection for map overlay

  7. Motivation Problem Line segment intersection Output-sensitive algorithms Plane sweep Some attempts 7 Computational Geometry Lecture 2: Line segment intersection for map overlay

  8. Motivation Problem Line segment intersection Output-sensitive algorithms Plane sweep Some attempts Output-sensitive algorithm The asymptotic running time of an algorithm is always input-sensitive (depends on n ) We may also want the running time to be output-sensitive: if the output is large, it is fine to spend a lot of time, but if the output is small, we want a fast algorithm 8 Computational Geometry Lecture 2: Line segment intersection for map overlay

  9. Motivation Problem Line segment intersection Output-sensitive algorithms Plane sweep Some attempts Intersection points in practice Question: How many intersection points do we typically expect in our application? If this number is k , and if k = O ( n ) , it would be nice if the algorithm runs in O ( n log n ) time 9 Computational Geometry Lecture 2: Line segment intersection for map overlay

  10. Motivation Problem Line segment intersection Output-sensitive algorithms Plane sweep Some attempts First attempt Observation: Two line segments y can only intersect if their y -spans have an overlap So, how about only testing pairs of x line segments that intersect in the y -projection? 1D problem: Given a set of intervals on the real line, find all partly s 1 s 2 s 3 s 4 s 5 s 6 overlapping pairs ( s 1 , s 2 ) , ( s 4 , s 6 ) , ( s 5 , s 6 ) 10 Computational Geometry Lecture 2: Line segment intersection for map overlay

  11. Motivation Problem Line segment intersection Output-sensitive algorithms Plane sweep Some attempts First attempt 1D problem: Given a set of intervals on the real line, find all partly overlapping pairs Sort the endpoints and handle them from left to right; maintain currently intersected intervals in a balanced search tree T Left endpoint of s i : for each s j in T , report the pair s i , s j . Then insert s i in T Right endpoint of s i : delete s i from T Question: Is this algorithm output-sensitive for 1D interval intersection? 11 Computational Geometry Lecture 2: Line segment intersection for map overlay

  12. Motivation Problem Line segment intersection Output-sensitive algorithms Plane sweep Some attempts First attempt Back to the 2D problem: Determine the y -intervals of the 2D line segments Find the intersecting pairs of intervals with the 1D solution For every pair of intersecting intervals, test whether the corresponding line segments intersect, and if so, report Question: Is this algorithm output-sensitive for 2D line segment intersection? 12 Computational Geometry Lecture 2: Line segment intersection for map overlay

  13. Motivation Problem Line segment intersection Output-sensitive algorithms Plane sweep Some attempts Second attempt Refined observation: Two line segments can only intersect if their y -spans have an overlap, and they are adjacent in the x -order at that y -coordinate (they are horizontal neighbors ) 13 Computational Geometry Lecture 2: Line segment intersection for map overlay

  14. Introduction Motivation Events, status, structures Line segment intersection Event handling Plane sweep Efficiency Plane sweep The plane sweep technique : Imagine a horizontal line passing over the plane from top to bottom, solving the problem as it moves The sweep line stops and the algorithm computes at certain positions ⇒ events The algorithm stores the relevant situation at the current position of the sweep line ⇒ status The algorithm knows everything it needs to know above the sweep line, and found all intersection points 14 Computational Geometry Lecture 2: Line segment intersection for map overlay

  15. Introduction Motivation Events, status, structures Line segment intersection Event handling Plane sweep Efficiency Sweep computed unexplored 15 Computational Geometry Lecture 2: Line segment intersection for map overlay

  16. Introduction Motivation Events, status, structures Line segment intersection Event handling Plane sweep Efficiency Sweep and status computed status unexplored 16 Computational Geometry Lecture 2: Line segment intersection for map overlay

  17. Introduction Motivation Events, status, structures Line segment intersection Event handling Plane sweep Efficiency Status and events The status of this particular plane sweep algorithm, at the current position of the sweep line, is the set of line segments intersecting the sweep line, ordered from left to right The events occur when the status changes , and when output is generated event ≈ interesting y -coordinate 17 Computational Geometry Lecture 2: Line segment intersection for map overlay

  18. Introduction Motivation Events, status, structures Line segment intersection Event handling Plane sweep Efficiency s 1 s 3 s 2 s 4 add s 1 s 5 s 6 s 7 s 8 18 Computational Geometry Lecture 2: Line segment intersection for map overlay

  19. Introduction Motivation Events, status, structures Line segment intersection Event handling Plane sweep Efficiency s 1 s 3 s 2 s 4 add s 2 after s 1 s 5 s 6 s 7 s 8 19 Computational Geometry Lecture 2: Line segment intersection for map overlay

  20. Introduction Motivation Events, status, structures Line segment intersection Event handling Plane sweep Efficiency s 1 s 3 s 2 s 4 add s 3 between s 1 and s 2 s 5 s 6 s 7 s 8 20 Computational Geometry Lecture 2: Line segment intersection for map overlay

  21. Introduction Motivation Events, status, structures Line segment intersection Event handling Plane sweep Efficiency s 1 s 3 s 2 s 4 add s 4 before s 1 s 5 s 6 s 7 s 8 21 Computational Geometry Lecture 2: Line segment intersection for map overlay

  22. Introduction Motivation Events, status, structures Line segment intersection Event handling Plane sweep Efficiency s 1 s 3 s 2 s 4 report intersection ( s 1 , s 2 ) ; swap s 1 s 5 and s 3 s 6 s 7 s 8 22 Computational Geometry Lecture 2: Line segment intersection for map overlay

  23. Introduction Motivation Events, status, structures Line segment intersection Event handling Plane sweep Efficiency s 1 s 3 s 2 s 4 remove s 2 s 5 s 6 s 7 s 8 23 Computational Geometry Lecture 2: Line segment intersection for map overlay

  24. Introduction Motivation Events, status, structures Line segment intersection Event handling Plane sweep Efficiency s 1 s 3 s 2 s 4 remove s 1 s 5 s 6 s 7 s 8 24 Computational Geometry Lecture 2: Line segment intersection for map overlay

  25. Introduction Motivation Events, status, structures Line segment intersection Event handling Plane sweep Efficiency s 1 s 3 s 2 s 4 add s 5 after s 3 s 5 s 6 s 7 s 8 25 Computational Geometry Lecture 2: Line segment intersection for map overlay

  26. Introduction Motivation Events, status, structures Line segment intersection Event handling Plane sweep Efficiency s 1 s 3 s 2 s 4 report intersection ( s 3 , s 4 ) ; swap s 3 s 5 and s 4 s 6 s 7 s 8 26 Computational Geometry Lecture 2: Line segment intersection for map overlay

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