mirror of
https://github.com/AtsushiSakai/PythonRobotics.git
synced 2026-01-14 16:57:58 -05:00
82 lines
3.1 KiB
Markdown
82 lines
3.1 KiB
Markdown
# PythonRobotics
|
|
|
|
Python sample codes for robotics algorithm.
|
|
|
|
|
|
# Requirements
|
|
|
|
- numpy
|
|
|
|
- scipy
|
|
|
|
- matplotlib
|
|
|
|
# Path Planning
|
|
|
|
Path Planning Samples.
|
|
|
|
|
|
## RRT
|
|
|
|
Rapidly Randamized Tree Path plainning sample.
|
|
|
|

|
|
|
|
This script is a simple path planning code with Rapidly-Exploring Random Trees (RRT)
|
|
|
|
see (in Japanese) :
|
|
|
|
[PythonによるRapidly-Exploring Random Trees (RRT)パスプランニングサンプルプログラム - MyEnigma](http://myenigma.hatenablog.com/entry/2016/03/23/092002)
|
|
|
|
## RRTStar
|
|
|
|

|
|
|
|
This script is a path planning code with RRT \*
|
|
|
|
- [Incremental Sampling-based Algorithms for Optimal Motion Planning](https://arxiv.org/abs/1005.0416)
|
|
|
|
|
|
## RRT Car
|
|
|
|
<!--  -->
|
|

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

|
|
|
|
Path planning for a car robot with RRT\* and ducings path planner.
|
|
|
|
|
|
## Dubins path planning
|
|
|
|
A sample code for Dubins path planning.
|
|
|
|
[Dubins path - Wikipedia](https://en.wikipedia.org/wiki/Dubins_path)
|
|
|
|

|
|

|
|

|
|
|
|
## Reeds Shepp planning
|
|
|
|
A sample code with Reeds Shepp path planning.
|
|
|
|

|
|

|
|

|
|
|
|
|
|
# License
|
|
|
|
MIT
|
|
|
|
# Author
|
|
|
|
Atsushi Sakai ([@Atsushi_twi](https://twitter.com/Atsushi_twi))
|
|
|