Warning
This page is located in archive. Go to the latest version of this course pages. Go the latest version of this page.

Lab04 - Grid and Graph based Path Planning

Motivations and Goals
Become familiar with grid based path planning
Understand the basic steps of the mobile robot navigation
Be able to implement simple path planning algorithms and deploy them in robot navigation
Become familiar with advanced methods of grid based path planning and dynamic replanning
Be able to dynamically replan the motion based on the robot feedback from the environment
Tasks (teacher)
T1d-plan (3 Points) Implement selected search algorithm such as A* in grid-based path planning
Implement robot embodiment and extension of the grid map to configuration space

Grid-Based Planning for Mobile Robot Navigation

The grid representation of the world introduces discretization of the robot's action space into individual cells. These cells carry the information whether they are free or occupied and possibly further information including traversability, or suitability of the area for foot placement, etc. An example of a terrain map and its underlying representation as a traversability map is visualized in the following figure.

A typical pipeline of the grid-based path planning consists of following steps:

  1. Obstacle growing - The robot has non-zero dimensions that represent its embodiment which has to be taken into account when planning. Moreover, the plan execution in real experiments has a limited precision which further enlarges demands on the clearance to the obstacles for the robot to safely navigate the environment. The planning with a large robot in grid environment is complex, therefore the trick is to grow the borders of the obstacles by a diameter of the robot and plan in the resulting map that ensures a sufficient clearance to the obstacles.
  2. Path planning - Proper selection of the grid path planning algorithm depends on the performance metrics and usage of the plan. Among others, following grid-based planning algorithms are worth mentioning:
    1. Breadth First Search (BFS), Depth First Search (DFS)
    2. Dijkstra
    3. A*
    4. Jump Point Search (JPS)
    5. Theta* (any-angle path planning - returns shortest path)
    6. ARA* (Any-time repairing A*)
    7. D* lite
    8. Floyd-Warshall
  3. Trajectory smoothing - The grid-based planners usually return path as a list of neighboring cells (?which of them doesn't?). The trajectory smoothing is for simplifycation of the path representation, possible shortening of the path and taking into consideration the path following approach deployed on the particular mobile robot. Typical approach to trajectory smoothing is to connect the neighboring segments one by one using straight-line segments up to the point where the straight-line segment collide with an obstacle (grown obstacle of course) and then follow with another straight-line segment.

Evaluation of path planning methods in robotics

Typical steps of planning algorithm evaluation in robotics consists of following steps

  1. Software testing of the planning algorithm without execution
  2. Simulation of execution with perfect information and perfect execution
  3. Simulation in realistic simulator with perfect information and imperfect execution given by simulated physics
  4. Deployment on a real robot with imperfect information and imperfect execution

For evaluation of the path, different metrics can be used. In general following properties are examined:

  • Feasibility - whether the path is feasible for particular robot given its embodiment
  • Length - the overall path length
  • Planning time - in the real-time applications and multi-goal path planning, the overall planning time is a crucial parameter
  • Clearance - how far from the obstacles the robot navigate. Low distance may result in robot damage in case of inaccurate path execution
courses/uir/labs/lab04.txt · Last modified: 2021/08/30 16:20 by pragrmi1