Skip to content

shorane/Path-smoothing-and-Optimization

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Path smoothing and Trajectory Optimization

This page is created to demonstrate the intermediate results of an ongoing project in path smoothing and optimization. Due to potential novelty in the code, it has not been made available yet, but will be uploaded in the future.

What the algorithm does:

The algorithm generates smooth collision-free paths with C1 continuity for autonomous agents with non-holonomic constraints.

Corridor enviroment Maze environment Scattered environment

How it is done:

  • This is a post-processing algorithm that works on the initial path generated by the Rapidly Exploring Random Trees (RRT) algorithm.
  • The implementation uses Dubins curves as the extend/steer function.
  • The RRT-Dubins combination helps ensure C1 continuity while generating an initial start to goal path quickly.
  • The post-processing function optimizes this initial path for curvature and path length.
  • There are two different levels of optimization based on the requirements of application.

The below illustrations show how the post-processing function optimizes the initial loopy and sub-par path and generates a much smoother and shorter path.

Corridor enviroment Maze environment Scattered environment

Result:

  • The final path is much smoother and is close to the asymptotically optimal paths generated by the RRT* algorithm.
  • The added bonus is that this algorithm is much faster than RRT*, and can be potentially deployed in an anytime fashion.

The below results show the comparison of path charateristics of the base path against 2 different levels of optimization applied by the post processing algorithm. The results have been averaged after running 100 iterations of each version in three different test environments.

Benchmarking: (benchmarking report)

The developed RRT-Dubins-Post_Processing algorithm has been benchmarked against other common methods like the following:

Metrics for comparison:

  • Average curvature
  • Number of curvature peaks
  • Maximum curvature
  • Average curvature variation
  • Number of curvature variation peaks
  • Path length

The Benchmarking report can be found here: Link to benchmarking report

To view more relevant projects:

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published