Code Monkey home page Code Monkey logo

kalman_variants's Introduction

kalman_variants - a selective set of Nonlinear Kalman Filter Variants

Package Summary

kalman_variants implements several Kalman filter nonlinear variants with state estimation applications for robot and autonomous systems in mind. The package includes detailed line-by-line annotated code for every implementation of the kalman filter variant. You will also have free access to an implementation guide at Kalman_filter_variants/doc/Kalman_Implementation_Guide_For_Dummies.pdf to go along with the code to accelerate your learning.

At the moment, this package implements

  • Extended Kalman Filter (EKF) w/ landmark-localization tutorial
  • Error State Extended Kalman Filter (ESEKF)
  • Unscented Kalman Filter (UKF)

Moreover, it implements the following vehicle motion model in both discrete and continuous formulations

  • Kinematic Bicycle Model
  • Kinematic Differential Drive Model
  • Kinematic Ackermann Model
  • Dynamic Bicycle Model

Status

  • Maintainer Status: Active
  • Maintainer(s): Jingxue Jiang
  • Author(s): Jingxue Jiang

Installation

Download the source via git clone

cd <your directory>
git clone https://github.com/jiangjingxue/kalman_filter_variants.git
python setup.py install

Basic Use

First, import the filters and helper functions.

import numpy as np
from kalman_variants.ekf import EKFLocalization
from kalman_variants.common import AddictdeNoise

Create the filter

my_ekf = EKFLocalization()

Debug

if you encounter following issue when importing the package

ModuleNotFoundError: No module named 'kalman_variants'

Set PYTHONPATH environment variable in root project directory (Unix)

export PYTHONPATH=.

For Windows, use

set PYTHONPATH=.

kalman_variants's People

Contributors

jiangjingxue avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.