1 Star 0 Fork 0

jasonchen/PythonRobotics

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
贡献代码
同步代码
取消
提示: 由于 Git 不支持空文件夾,创建文件夹后会生成空的 .keep 文件
Loading...
README
MIT

PythonRobotics

Build Status

Python codes for robotics algorithm.

Table of Contents

Requirements

How to use

  1. Install the required libraries.

  2. Clone this repo.

  3. Execute python script in each directory.

  4. Add star to this repo if you like it .

Localization

Extended Kalman Filter localization

This is a sensor fusion localization with Extended Kalman Filter(EKF).

The blue line is true trajectory, the black line is dead reckoning trajectory,

the gren point is positioning observation (ex. GPS), and the red line is estimated trajectory with EKF.

The red ellipse is estimated covariance ellipse with EKF.

Unscented Kalman Filter localization

2

This is a sensor fusion localization with Unscented Kalman Filter(UKF).

The lines and points are same meaning of the EKF simulation.

Ref:

Path Planning

Dynamic Window Approach

This is a 2D navigation sample code with Dynamic Window Approach.

2

Grid based search

Dijkstra algorithm

This is a 2D grid based shortest path planning with Dijkstra's algorithm.

PythonRobotics/figure_1.png at master · AtsushiSakai/PythonRobotics

In the animation, cyan points are searched nodes.

A* algorithm

This is a 2D grid based shortest path planning with A star algorithm.

PythonRobotics/figure_1.png at master · AtsushiSakai/PythonRobotics

In the animation, cyan points are searched nodes.

It's heuristic is 2D Euclid distance.

Potential Field algorithm

This is a 2D grid based path planning with Potential Field algorithm.

PotentialField

In the animation, the blue heat map shows potential value on each grid.

Ref:

Model Predictive Trajectory Generator

This is a path optimization sample on model predictive trajectory generator.

This algorithm is used for state lattice planner.

Path optimization sample

PythonRobotics/figure_1.png at master · AtsushiSakai/PythonRobotics

Lookup table generation sample

PythonRobotics/figure_1.png at master · AtsushiSakai/PythonRobotics

Ref:

State Lattice Planning

This script is a path planning code with state lattice planning.

This code uses the model predictive trajectory generator to solve boundary problem.

Uniform polar sampling

PythonRobotics/figure_1.png at master · AtsushiSakai/PythonRobotics

Biased polar sampling

PythonRobotics/figure_1.png at master · AtsushiSakai/PythonRobotics

Lane sampling

PythonRobotics/figure_1.png at master · AtsushiSakai/PythonRobotics

Probabilistic Road-Map (PRM) planning

PRM

This PRM planner uses Dijkstra method for graph search.

In the animation, blue points are sampled points,

Cyan crosses means searched points with Dijkstra method,

The red line is the final path of PRM.

Ref:

Voronoi Road-Map planning

VRM

This Voronoi road-map planner uses Dijkstra method for graph search.

In the animation, blue points are Voronoi points,

Cyan crosses means searched points with Dijkstra method,

The red line is the final path of Vornoi Road-Map.

Ref:

Rapidly-Exploring Random Trees (RRT)

Basic RRT

PythonRobotics/figure_1.png at master · AtsushiSakai/PythonRobotics

This script is a simple path planning code with Rapidly-Exploring Random Trees (RRT)

Black circles are obstacles, green line is a searched tree, red crosses are start and goal positions.

RRT*

PythonRobotics/figure_1.png at master · AtsushiSakai/PythonRobotics

This script is a path planning code with RRT*

Black circles are obstacles, green line is a searched tree, red crosses are start and goal positions.

Ref:

RRT with dubins path

PythonRobotics

Path planning for a car robot with RRT and dubins path planner.

RRT* with dubins path

AtsushiSakai/PythonRobotics

Path planning for a car robot with RRT* and dubins path planner.

RRT* with reeds-sheep path

Robotics/animation.gif at master · AtsushiSakai/PythonRobotics)

Path planning for a car robot with RRT* and reeds sheep path planner.

Closed Loop RRT*

A vehicle model based path planning with closed loop RRT*.

CLRRT

In this code, pure-pursuit algorithm is used for steering control,

PID is used for speed control.

Ref:

Cubic spline planning

A sample code for cubic path planning.

This code generates a curvature continuous path based on x-y waypoints with cubic spline.

Heading angle of each point can be also calculated analytically.

PythonRobotics/figure_1.png at master · AtsushiSakai/PythonRobotics PythonRobotics/figure_1.png at master · AtsushiSakai/PythonRobotics PythonRobotics/figure_1.png at master · AtsushiSakai/PythonRobotics

B-Spline planning

B-Spline

This is a path planning with B-Spline curse.

If you input waypoints, it generates a smooth path with B-Spline curve.

The final course should be on the first and last waypoints.

Ref:

Bezier path planning

A sample code of Bezier path planning.

It is based on 4 control points Beier path.

Bezier1

If you change the offset distance from start and end point,

You can get different Beizer course:

Bezier2

Ref:

Quintic polynomials planning

Motion planning with quintic polynomials.

2

It can calculate 2D path, velocity, and acceleration profile based on quintic polynomials.

Ref:

Dubins path planning

A sample code for Dubins path planning.

PythonRobotics/figure_1.png at master · AtsushiSakai/PythonRobotics PythonRobotics/figure_1.png at master · AtsushiSakai/PythonRobotics PythonRobotics/figure_1.png at master · AtsushiSakai/PythonRobotics

Ref:

Reeds Shepp planning

A sample code with Reeds Shepp path planning.

PythonRobotics/figure_1-5.png at master · AtsushiSakai/PythonRobotics PythonRobotics/figure_1-5.png at master · AtsushiSakai/PythonRobotics PythonRobotics/figure_1-5.png at master · AtsushiSakai/PythonRobotics

Ref:

Optimal Trajectory in a Frenet Frame

3

This is optimal trajectory generation in a Frenet Frame.

The cyan line is the target course and black crosses are obstacles.

The red line is predicted path.

Ref:

Mix Integer Optimization based model predictive planning and control

2

A model predictive planning and control code with mixed integer programming.

It is based on this paper.

This code uses cvxpy as an optimization modeling tool,

Gurobi is used as a solver for mix integer optimization problem.

Path tracking

Pure pursuit tracking

Path tracking simulation with pure pursuit steering control and PID speed control.

2

The red line is a target course, the green cross means the target point for pure pursuit control, the blue line is the tracking.

Ref:

Stanley control

Path tracking simulation with Stanley steering control and PID speed control.

2

Ref:

Rear wheel feedback control

Path tracking simulation with rear wheel feedback steering control and PID speed control.

PythonRobotics/figure_1.png at master · AtsushiSakai/PythonRobotics

Linear–quadratic regulator (LQR) steering control

Path tracking simulation with LQR steering control and PID speed control.

PythonRobotics/figure_1.png at master · AtsushiSakai/PythonRobotics

Linear–quadratic regulator (LQR) speed and steering control

Path tracking simulation with LQR speed and steering control.

3

Model predictive speed and steering control

Path tracking simulation with iterative linear model predictive speed and steering control.

This code uses cvxpy as an optimization modeling tool,

License

MIT

Author

Atsushi Sakai (@Atsushi_twi)

The MIT License (MIT) Copyright (c) 2016 Atsushi Sakai Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

简介

Python sample codes for robotics algorithms. 展开 收起
README
MIT
取消

发行版

暂无发行版

贡献者

全部

近期动态

不能加载更多了
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/jason--chen/PythonRobotics.git
git@gitee.com:jason--chen/PythonRobotics.git
jason--chen
PythonRobotics
PythonRobotics
master

搜索帮助