![]()
Python codes for robotics algorithm.
This is a Python code collection of robotics algorithms, especially for autonomous navigation.
Features:
Easy to read for understanding each algorithm's basic idea.
Widely used and practical algorithms are selected.
Minimum dependency.
See this paper for more details:
Python 3.6.x (2.7 is not supported)
numpy
scipy
matplotlib
pandas
This README only shows some examples of this project.
If you are interested in other examples or mathematical backgrounds of each algorithm,
You can check the full documentation online: https://pythonrobotics.readthedocs.io/
All animation gifs are stored here: AtsushiSakai/PythonRoboticsGifs: Animation gifs of PythonRobotics
git clone https://github.com/AtsushiSakai/PythonRobotics.git
cd PythonRobotics/
conda env create -f environment.yml
Execute python script in each directory.
Add star to this repo if you like it :smiley:.

Documentation: Notebook

This is a sensor fusion localization with Particle Filter(PF).
The blue line is true trajectory, the black line is dead reckoning trajectory,
and the red line is estimated trajectory with PF.
It is assumed that the robot can measure a distance from landmarks (RFID).
This measurements are used for PF localization.
Ref:

This is a 2D localization example with Histogram filter.
The red cross is true position, black points are RFID positions.
The blue grid shows a position probability of histogram filter.
In this simulation, x,y are unknown, yaw is known.
The filter integrates speed input and range observations from RFID for localization.
Initial position is not needed.
Ref:
This is a 2D Gaussian grid mapping example.

This is a 2D ray casting grid mapping example.

This is a 2D object clustering with k-means algorithm.

This is a 2D rectangle fitting for vehicle detection.

Simultaneous Localization and Mapping(SLAM) examples
This is a 2D ICP matching example with singular value decomposition.
It can calculate a rotation matrix and a translation vector between points to points.

Ref:
This is a feature based SLAM example using FastSLAM 1.0.
The blue line is ground truth, the black line is dead reckoning, the red line is the estimated trajectory with FastSLAM.
The red points are particles of FastSLAM.
Black points are landmarks, blue crosses are estimated landmark positions by FastSLAM.

Ref:
This is a graph based SLAM example.
The blue line is ground truth.
The black line is dead reckoning.
The red line is the estimated trajectory with Graph based SLAM.
The black stars are landmarks for graph edge generation.

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

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

In the animation, cyan points are searched nodes.
This is a 2D grid based shortest path planning with A star algorithm.

In the animation, cyan points are searched nodes.
Its heuristic is 2D Euclid distance.
This is a 2D grid based path planning with Potential Field algorithm.

In the animation, the blue heat map shows potential value on each grid.
Ref:
This script is a path planning code with state lattice planning.
This code uses the model predictive trajectory generator to solve boundary problem.
Ref:



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:

This 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:
)
Path planning for a car robot with RRT* and reeds sheep path planner.
This is a path planning simulation with LQR-RRT*.
A double integrator motion model is used for LQR local planner.

Ref:
LQR-RRT*: Optimal Sampling-Based Motion Planning with Automatically Derived Extension Heuristics
[MahanFathi/LQR-RRTstar: LQR-RRT* method is used for ra
$ claude mcp add PythonRobotics \
-- python -m otcore.mcp_server <graph>