Academia.eduAcademia.edu

Chapter 5 Sampling-Based Motion Planning

Abstract
sparkles

AI

In this chapter, the sampling-based motion planning approach is elaborated, focusing on its efficacy in avoiding explicit construction of obstacle configurations. It defines key notions of completeness relevant to sampling algorithms, including resolution completeness and probabilistic completeness. The chapter outlines different sections that cover metric and measure space concepts, general sampling criteria, collision detection algorithms, and frameworks for integrating sampling with discrete planning methods. It emphasizes distance and volume measurement in configuration space as critical components of sampling algorithms.

Key takeaways

  • After 2 n points have been placed, there will be a grid with two points per axis.
  • Collision detection algorithms determine whether a configuration lies in C f ree , but motion planning algorithms require that an entire path maps into C f ree .
  • Let S ⊂ C f ree indicate the set of all points reached by G. Since each e ∈ E is a path, this can be expressed as the SIMPLE RDT(q 0 ) 1 G.init(q 0 ); 2 for i = 1 to k do 3 G.add vertex(α(i)); 4 q n ← nearest(S(G), α(i)); 5
  • Each path segment can be approximated by inserting intermediate vertices along long segments, as shown in nearest is performed by finding the closest vertex to α(i) in G. This approach is by far the simplest to implement.
  • Once α(i) ∈ C f ree , then in line 4 it is inserted as a vertex of G. The next step is to try to connect α(i) to some nearby vertices, q, of G. Each connection is attempted by the connect function, which is a typical LPM (local planning method) from Section 5.4.1.