ACS6121 - Unit 04 (Planning 2) Flashcards
(15 cards)
What is a configuration space (C-space)?
The set of all possible configurations of a robot; each point represents a unique position/orientation.
What does ๐ถ_obs represent?
The set of all configurations where the robot collides with obstacles.
What is the Minkowski difference used for?
To compute ๐ถ_obs by โgrowingโ obstacles with the shape of the robot.
What is a roadmap in motion planning?
A graph embedded in ๐ถ_free used to find paths using discrete search.
What is vertical cell decomposition?
Divides ๐ถ_free into convex cells by extending vertical lines from obstacle vertices.
What makes sampling-based planning scalable?
It doesnโt require explicit computation of ๐ถ_obs; instead, it samples and builds a graph incrementally.
What are reflex vertices in motion planning?
Vertices in a polygon with internal angles greater than ๐, used in visibility graph methods.
What is the tradeoff in sampling resolution?
High resolution = better accuracy but slower; low resolution = faster but might miss valid paths.
What defines the topology of a space?
A set of open subsets satisfying specific closure and union rules.
What is ๐ถ_free?
The set of all configurations where the robot does not collide with any obstacles.
- Multiple Choice:
Which roadmap method minimizes collision risk due to uncertainty?
A) Vertical Cell Decomposition
B) Maximum-Clearance (Voronoi)
C) Visibility Graph
D) Breadth-First Search
โ Correct Answer: B) Maximum-Clearance (Voronoi)
- True/False:
In sampling-based planning, the robot always finds the shortest path.
โ False
- Fill in the Blank:
The _______________ of a configuration space is the subset where the robot is not in collision.
โ Free space (๐ถ_free)
- Short Answer:
What are the two key properties a roadmap must satisfy?
โ It must be connected (a path exists if one exists in ๐ถ_free) and reachable (initial and goal configurations can connect to it).
- Multiple Choice:
Which of these is not a step in combinatorial planning?
A) Compute ๐ถ_obs
B) Build roadmap
C) Random sampling
D) Discrete graph search
โ Correct Answer: C) Random sampling