Skip to content

Junkiejim/particle-filter-tutorial

 
 

Repository files navigation

Installation

All code is written in Python. In order to run the code, the following packages must be installed:

  • numpy
  • matplotlib
  • scipy

Documentation

Details on the algorithms, background information in general and an documentation for all the main scripts can be found in this paper.

Running the code

The main scripts are

  • demo_running_example: runs the basic particle filter
  • demo_range_only: runs the basic particle filter with a lower number of landmarks (illustrates the particle filter's ability to represent non-Gaussian distributions).

Whenver running the code, a robot localization problem will be simulated. For most scripts, the visualization below should appear.

alt text

The picture shows a top view of a 2D simulated world. Four landmarks can be observed by the robot (blue rectangles). The landmark positions are given in the map and therefore are used to estimate the tru robot position and orientation (red circle). The particles that together represent the posterior distribution are represented by the green dots.

Besides the standard particle filter, more advanced particle filters are implemented, different resampling schemes and different resampling algorithms are available. This allows for trying many different particle filter is similar settings.

The supported resampling algorithms are:

  • Multinomial resampling
  • Residual resampling
  • Stratified resampling
  • Systematic resampling

Supported resampling schemes are:

  • Every time step
  • Based on approximated effective number of particles
  • Based on reciprocal of maximum particl weight

More advanced particle filters that are supported:

  • Adaptive particle filter
  • Auxiliary particle filter
  • Extended Kalman particle filter

Reference

In case you use code in your work, please cite:

Elfring J, Torta E, van de Molengraft R. Particle Filters: A Hands-On Tutorial. Sensors. 2021; 21(2):438.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%