mengchaoheng / EKF2_offline

Use the ecl library offline to implement EKF

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Example using ECL offline

I use Myekf2.cpp. instead of main.cpp.
This version use EKF without GPS velocity.
If we have GPS velocity, we should cover the folder EKF with the original code.
In order to run normally, we need to have a folder called "data" in the root directory. And the "data" should have :

imu_data.txt
gps_data.txt
mag_data.txt
baro_data.txt

Build

mkdir build/
cd build/
cmake ../EKF
make

Usage

cd build
./myekf2

ECL

Very lightweight Estimation & Control Library.

DOI Build Status

This library solves the estimation & control problems of a number of robots and drones. It accepts GPS, vision and inertial sensor inputs. It is extremely lightweight and efficient and yet has the rugged field-proven performance.

The library is BSD 3-clause licensed.

Building EKF Library

Prerequisites:

By following the steps mentioned below you can create a shared library which can be included in projects using -l flag of gcc:

mkdir Build/
cd Build/
cmake ../EKF
make

About

Use the ecl library offline to implement EKF

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:C++ 89.0%Language:Jupyter Notebook 4.4%Language:C 2.6%Language:CMake 2.1%Language:Python 1.8%Language:Shell 0.1%