1 / 25

An Efficient Central Path Algorithm For Virtual Navigation

An Efficient Central Path Algorithm For Virtual Navigation. Parag Chaudhuri, Rohit Khandekar, Deepak Sethi, Prem Kalra Vision and Graphics Group, Department of Computer Science and Engineering, Indian Institute of Technology Delhi. Computer Graphics International 2004 Crete, Greece.

arin
Download Presentation

An Efficient Central Path Algorithm For Virtual Navigation

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. An Efficient Central Path Algorithm For Virtual Navigation Parag Chaudhuri, Rohit Khandekar, Deepak Sethi, Prem Kalra Vision and Graphics Group, Department of Computer Science and Engineering, Indian Institute of Technology Delhi. Computer Graphics International 2004 Crete, Greece. 18th June, 2004.

  2. Motivation • Navigation in virtual environments is needed in many applications such as • Virtual Surgery • Automatic flight planning • Computer games

  3. The Problem • Given a three dimensional closed object and two points in the interior, find a path connecting those two points that • Lies completely inside the object • Stays away from the boundary • Has short length

  4. Background • Topological thinning • Pavlidis 1980, Paik et. al. 1998, Ge et. al. 1999, Bouix et. al. 2003, Telea & Vilanova 2003 • Potential field based methods • Hong 1995, Deschamps & Cohen 2001 • Distance field based methods • Bitter et. al. 2001, Wan et. al. 2001

  5. Distance From Boundary (DFB) • Distance of a point from the nearest boundary. • Different measures of distance – Euclidean, City-block, Champher. • Find a path such that sum of DFB field at all points on the path is maximized.

  6. Our Approach • Compute DFB field for a hierarchical subdivision as opposed to computing DFB for the entire object at the finest resolution.

  7. Hierarchical Subdivision • Enclose the object in a bounding box

  8. Hierarchical Subdivision • Subdivide the box into four equal parts

  9. Hierarchical Subdivision • Keep subdividing the smaller parts till they are intersecting with the boundary of the object.

  10. Hierarchical Subdivision • The smallest size boxes are the voxels with size 1. • Size of a block b (size(b)) is the number of voxels on its side.

  11. DFB Field Computation 1 2 4 8

  12. DFB Field Computation • We compute the DFB for the cells by running a shortest path algorithm from the boundary to all the cells.

  13. Path Computation • We can find the path between any two points by running a shortest path algorithm on the graph formed by the cells. • An edge between blocks b1 and b2 in the graph is now given a weight w as W(b1,b2)=1/dfb(b1)+1/dfb(b2)

  14. Path Computation • The algorithm returns a path in terms of connected blocks.

  15. Path Computation • A path is obtained by joining the centres of the blocks.

  16. Path Smoothening Corner Cutting Splines

  17. Result - Flythrough

  18. Result – Computational Complexity • It is proved that the number of voxels formed in the final subdivision are O(n+hk) • n : number of voxels on the boundary. • h : number of holes in the object. • k : number of levels of subdivision. • The running time is O((n+hk)log(n+hk))

  19. Result – Computational Complexity

  20. The Progressive Algorithm • We usually do not need to compute the DFB for the entire object. • The extraneous volume for which the DFB is computed becomes a bottleneck at times.

  21. The Progressive Algorithm • Subdivide the region into coarse grid. • Choose a Region Of Interest (ROI) which contains the source and destination. • Compute the path for this ROI.

  22. The Progressive Algorithm • Grow the ROI and recompute the path. • Continue growing until the change in path length falls below a threshold.

  23. Results - Flythrough

  24. Results – Running Time

  25. Conclusion • DFB/Path computation is fast. • Paths of multiple resolutions. • Scaling the input does not adversely affect the computation time. • The subdivision grid also aids in View Culling while rendering. • Progressive extension makes it more efficient.

More Related