All Projects → mbrossar → Ai Imu Dr

mbrossar / Ai Imu Dr

Licence: mit
AI-IMU Dead-Reckoning

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Ai Imu Dr

Uwb Localization
Accurate 3D Localization for MAV Swarms by UWB and IMU Fusion.
Stars: ✭ 155 (-54.01%)
Mutual labels:  imu, localization
Urbannavdataset
UrbanNav: an Open-Sourcing Localization Data Collected in Asian Urban Canyons, Including Tokyo and Hong Kong
Stars: ✭ 79 (-76.56%)
Mutual labels:  imu, localization
Identityserver4aspnetcoreidentitytemplate
An ASP.NET Core 3.1 IdentityServer4 Identity Bootstrap 4 template with localization
Stars: ✭ 262 (-22.26%)
Mutual labels:  localization
Deep Learning Localization Mapping
A collection of deep learning based localization models
Stars: ✭ 300 (-10.98%)
Mutual labels:  localization
Js Lingui
🌍📖 A readable, automated, and optimized (5 kb) internationalization for JavaScript
Stars: ✭ 3,249 (+864.09%)
Mutual labels:  localization
Tower
i18n & L10n library for Clojure/Script
Stars: ✭ 264 (-21.66%)
Mutual labels:  localization
Lunr Languages
A collection of languages stemmers and stopwords for Lunr Javascript library
Stars: ✭ 296 (-12.17%)
Mutual labels:  localization
labels
Bolt Labels extension - Translatable labels for Bolt
Stars: ✭ 18 (-94.66%)
Mutual labels:  localization
Hdl localization
Real-time 3D localization using a (velodyne) 3D LIDAR
Stars: ✭ 332 (-1.48%)
Mutual labels:  localization
Eo Locale
🌏Internationalize js apps 👔Elegant lightweight library based on Internationalization API
Stars: ✭ 290 (-13.95%)
Mutual labels:  localization
Gatsby Plugin Intl
Gatsby plugin that turns your website into an internationalization-framework out of the box.
Stars: ✭ 300 (-10.98%)
Mutual labels:  localization
Geomapnet
Geometry-Aware Learning of Maps for Camera Localization (CVPR2018)
Stars: ✭ 281 (-16.62%)
Mutual labels:  localization
Freeimu Updates
IMU - FreeIMU Library Zero Drift, Altitude & LSM303 Heading Stability
Stars: ✭ 267 (-20.77%)
Mutual labels:  imu
Eu4dll
Europa Universalis IV double byte language patch; master:1.30.6.0, dev:1.30.6.0
Stars: ✭ 295 (-12.46%)
Mutual labels:  localization
Docs L10n
Translations of TensorFlow documentation
Stars: ✭ 262 (-22.26%)
Mutual labels:  localization
Minecraft Mod Language Package
A language package for Minecraft Mods.
Stars: ✭ 322 (-4.45%)
Mutual labels:  localization
Mojito
An automation platform that enables continuous localization.
Stars: ✭ 256 (-24.04%)
Mutual labels:  localization
Icu4x
Solving i18n for client-side and resource-constrained environments.
Stars: ✭ 275 (-18.4%)
Mutual labels:  localization
Navego
NaveGo: an open-source MATLAB/GNU Octave toolbox for processing integrated navigation systems and performing inertial sensors analysis.
Stars: ✭ 294 (-12.76%)
Mutual labels:  imu
Dynamic robot localization
Point cloud registration pipeline for robot localization and 3D perception
Stars: ✭ 339 (+0.59%)
Mutual labels:  localization

AI-IMU Dead-Reckoning [IEEE paper, ArXiv paper]

1.10% translational error on the KITTI odometry sequences with only an Inertial Measurement Unit.

Results on sequence 08

Overview

In the context of intelligent vehicles, robust and accurate dead reckoning based on the Inertial Measurement Unit (IMU) may prove useful to correlate feeds from imaging sensors, to safely navigate through obstructions, or for safe emergency stop in the extreme case of other sensors failure.

This repo contains the code of our novel accurate method for dead reckoning of wheeled vehicles based only on an IMU. The key components of the method are the Kalman filter and the use of deep neural networks to dynamically adapt the noise parameters of the filter. Our dead reckoning inertial method based only on the IMU accurately estimates 3D position, velocity, orientation of the vehicle and self-calibrates the IMU biases. We achieve on the KITTI odometry dataset on average a 1.10% translational error and the algorithm competes with top-ranked methods which, by contrast, use LiDAR or stereo vision.

Structure of the approach

The above figure illustrates the approach which consists of two main blocks summarized as follows:

  1. the filter integrates the inertial measurements with exploits zero lateral and vertical velocity as measurements with covariance matrix to refine its estimates, see the figure below;
  2. the noise parameter adapter determines in real-time the most suitable covariance noise matrix. This deep learning based adapter converts directly raw IMU signals into covariance matrices without requiring knowledge of any state estimate nor any other quantity.

Structure of the filter

Code

Our implementation is done in Python. We use Pytorch for the adapter block of the system. The code was tested under Python 3.5.

Installation & Prerequies

  1. Install pytorch. We perform all training and testing on its development branch.

  2. Install the following required packages, matplotlib, numpy, termcolor, scipy, navpy, e.g. with the pip3 command

pip3 install matplotlib numpy termcolor scipy navpy
  1. Clone this repo
git clone https://github.com/mbrossar/ai-imu-dr.git

Testing

  1. Download reformated pickle format of the 00-11 KITTI IMU raw data at this url, extract and copy then in the data folder.
wget "https://cloud.mines-paristech.fr/index.php/s/G9frEswwgKHhnr7/download"
mkdir ai-imu-dr/results
unzip download -d ai-imu-dr
rm download

These file can alternatively be generated after download the KITTI raw data and setting read_data = 1 in the main.py file.

  1. Download training parameters at this url, extract and copy in the temp folder.
wget "https://cloud.mines-paristech.fr/index.php/s/XXkh5VanzDW08hD/download"
unzip download -d ai-imu-dr/temp
rm download
  1. Test the filters !
ai-imu-dr/results
cd ai-imu-dr/src
python3 main_kitti.py

This first launches the filters for the all sequences. Then, results are plotted. Note that the parameters are trained on sequences 00, 01, 04-11, so only sequence 02 is a test sequence.

Training

You can train for testing another sequence (we do not find difference in the results) or for our own sequence by modifying the dataset class.

Paper

The paper M. Brossard, A. Barrau and S. Bonnabel, "AI-IMU Dead-Reckoning," in IEEE Transactions on Intelligent Vehicles, 2020, relative to this repo is available at this url.

Citation

If you use this code in your research, please cite:

@article{brossard2019aiimu,
  author = {Martin Brossard and Axel Barrau and Silv\`ere Bonnabel},
  journal={IEEE Transactions on Intelligent Vehicles}, 
  title = {{AI-IMU Dead-Reckoning}},
  year = {2020}
}

Authors

Martin Brossard*, Axel Barrau° and Silvère Bonnabel*

*MINES ParisTech, PSL Research University, Centre for Robotics, 60 Boulevard Saint-Michel, 75006 Paris, France

°Safran Tech, Groupe Safran, Rue des Jeunes Bois-Châteaufort, 78772, Magny Les Hameaux Cedex, France

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].