mirror of
https://github.com/AtsushiSakai/PythonRobotics.git
synced 2026-04-22 03:00:22 -04:00
add histogram filter animation and test
This commit is contained in:
32
README.md
32
README.md
@@ -11,7 +11,8 @@ Python codes for robotics algorithm.
|
||||
* [Localization](#localization)
|
||||
* [Extended Kalman Filter localization](#extended-kalman-filter-localization)
|
||||
* [Unscented Kalman Filter localization](#unscented-kalman-filter-localization)
|
||||
* [Particle Filter localization](#particle-filter-localization)
|
||||
* [Particle filter localization](#particle-filter-localization)
|
||||
* [Histogram filter localization](#histogram-filter-localization)
|
||||
* [Mapping](#mapping)
|
||||
* [Gaussian grid map](#gaussian-grid-map)
|
||||
* [Ray casting grid map](#ray-casting-grid-map)
|
||||
@@ -97,6 +98,10 @@ the green point is positioning observation (ex. GPS), and the red line is estima
|
||||
|
||||
The red ellipse is estimated covariance ellipse with EKF.
|
||||
|
||||
Ref:
|
||||
|
||||
- [PROBABILISTIC ROBOTICS](http://www.probabilistic-robotics.org/)
|
||||
|
||||
## Unscented Kalman Filter localization
|
||||
|
||||

|
||||
@@ -109,7 +114,8 @@ Ref:
|
||||
|
||||
- [Discriminatively Trained Unscented Kalman Filter for Mobile Robot Localization](https://www.researchgate.net/publication/267963417_Discriminatively_Trained_Unscented_Kalman_Filter_for_Mobile_Robot_Localization)
|
||||
|
||||
## Particle Filter localization
|
||||
|
||||
## Particle filter localization
|
||||
|
||||

|
||||
|
||||
@@ -123,6 +129,27 @@ It is assumed that the robot can measure a distance from landmarks (RFID).
|
||||
|
||||
This measurements are used for PF localization.
|
||||
|
||||
Ref:
|
||||
|
||||
- [PROBABILISTIC ROBOTICS](http://www.probabilistic-robotics.org/)
|
||||
|
||||
|
||||
## Histogram filter localization
|
||||
|
||||

|
||||
|
||||
This is a 2D localization example with 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:
|
||||
|
||||
- [PROBABILISTIC ROBOTICS](http://www.probabilistic-robotics.org/)
|
||||
|
||||
# Mapping
|
||||
|
||||
## Gaussian grid map
|
||||
@@ -575,3 +602,4 @@ Atsushi Sakai ([@Atsushi_twi](https://twitter.com/Atsushi_twi))
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user