![]() |
frenet_planner package from frenet_planner_agv repofrenet_planner frenet_planner_ported |
Package Summary
Tags | No category tags. |
Version | 0.0.0 |
License | TODO |
Build type | CATKIN |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/anime-sh/frenet_planner_agv.git |
VCS Type | git |
VCS Version | master |
Last Updated | 2021-09-25 |
Dev Status | UNMAINTAINED |
CI status | No Continuous Integration |
Released | UNRELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- bifrost
Authors
Frenet Planner ROS
Introduction
This is an implementation for a sampling based planner in frenet frame. The original paper discusses about converting normal coordinate frame to frenet frame & sampling of paths, selecting the them based on cost associated with each path.
Use Case
The planner has been tested in various environments. But is formed & found to be useful for high speed scenarios with minimal curves in path. This converts to highway scenario in the the physical world.
There are a lot of cases that require dynamic consideration of other traffic participants for complex maneuvers like merging into traffic flow, passing with on- coming traffic, changing lanes, or avoiding other vehicles.
Heuristics based planners sort all these quite easily. But in cases of time sparsity these planners don’t perform well. So there in comes the concept of taking time ‘t’ into consideration at planning & execution level. This is what the planner handles through taking maneuver time into account in sampling.
Requirements
Dependencies
Based on whether you have Ubuntu 16 or 18, the packages you require changes. The first options are for Ubuntu 16 while the 2nd ones are for Ubuntu 18.
Running Instructions
The following commands are to be run from your terminal:
$ roscore
$ roslaunch car_demo demo.launch
$ roslaunch frenet_planner frenet_planner.launch
$ python ~ catkin_ws/src/tracking_control/src/scripts/tracking_Methods/pure_pursuit.py
$ python ~ catkin_ws/src/tracking_control/src/scripts/controllers/PID_MIT_velocity_controller.py
Further Research Aspects
Incorporation of vehicle dynamics
The original paper doesn’t take the vehicle dynamics(Max. Acceleration & Turning Radius) into account. We have implemented a check function to prevent generation of paths with yaw greater than turning radius of our car. But a mathematical approach to incorporate this in the cost is still to be thought of.
Robust & Optimized Obstacle Checking
Currently we are iterating through the entire cost map for checking presence of obstacles. But this approach, though foolproof, isn’t optimized & requires a lot of computation, specially in the urban environments.
Training of Sampling Parameters
Our main task for the planner is to find the best suited path. In the original paper this was done through sampling. But on close observation & after checking it’s mathematical validity, we are trying to make an Reinforced Learning based model learn the same on it’s own. This would thus reduce the computation by a lot while maintaining the stability of the planner.
Resources
- Original Paper
- Notes on the Paper
- Simple Python Implementation
- Video of simulation
Contributors:
Wiki Tutorials
Package Dependencies
Deps | Name |
---|---|
geometry_msgs | |
nav_msgs | |
roscpp | |
rospy | |
std_msgs | |
costmap_2d | |
base_local_planner | |
costmap_converter | |
catkin |
System Dependencies
Dependant Packages
Name | Deps |
---|---|
path_sampler |
Launch files
- launch/frenet_planner.launch
-
- base_global_planner [default: navfn/NavfnROS]