SESSION-2
SESSION-2
Session 2:
Metric Path Planning
By
Dr. Ashok Kumar
Amity School of Engineering & Technology
Key Characteristics
•Continuous Space: Requires handling of real-world, non-discrete
environments.
•Metric Representation: Utilizes Cartesian or other coordinate systems.
•Complexity: Accounts for obstacles, dynamic environments, and robot
constraints
Advantages of PRMs
•Efficient for high-dimensional and complex spaces.
•Applicable to multiple queries once the roadmap is built.
•Handles both static and quasi-dynamic environments.
Limitations of PRMs
•Quality of paths depends on the number and distribution of
samples.
•Computational overhead in collision checking for dense
environments.
•Requires precomputation and is less suitable for fully dynamic
settings.
Amity School of Engineering & Technology
Introduction to RRTs
•Definition: RRT is a tree-based path planning algorithm that incrementally
builds a tree by randomly sampling the space and extending towards the
goal.
•Key Features:
• Sampling-based, asymptotically optimal.
• Focuses on high-dimensional spaces and complex environments.
Key Concepts of RRTs
•Configuration Space (C-Space): The space where each point
corresponds to a possible configuration of the robot.
•Tree Growth: Tree starts at an initial configuration and grows by
sampling random points in the C-space and connecting them to the
nearest node in the tree.
Amity School of Engineering & Technology
Advantages of RRTs
•Scalability:
• Works well in high-dimensional spaces and complex environments.
•Simplicity:
• Easy to implement with basic operations.
•Versatility:
• Can be adapted for different types of robots and environments.
Limitations of RRTs
•Path Quality:
• The initial path may not be optimal and may require post-processing.
•Computational Complexity:
• Can be slow for very high-dimensional or cluttered spaces.
•Dependency on Sampling:
• The efficiency depends on how well the space is sampled
Amity School of Engineering & Technology