jcmayoral / kalman-cpp

Basic Kalman filter implementation in C++ using Eigen

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Kalman Filter

This is a basic Kalman filter implementation in C++ using the Eigen library. It implements the algorithm directly as found in An Introduction to the Kalman Filter.

There is a test program that estimates the motion of a projectile based on noisy observations. To run it, use CMake:

cd kalman-cpp
mkdir build
cd build
cmake ..
make
./kalman-test

Note: You may have to specify the path to your Eigen library in CMakeLists.txt.

About

Basic Kalman filter implementation in C++ using Eigen

License:MIT License


Languages

Language:C++ 95.4%Language:CMake 4.6%