Skip to content

Guo-ziwei/fusion

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Fusing IMU and Odometry

This is a demo fusing IMU data and Odometry data (wheel odom or Lidar odom) or GPS data to obtain better odometry.

Currently, I implement Extended Kalman Filter (EKF), batch optimization and isam2 to fuse IMU and Odometry data.

Dependencies

This demo has the following dependencies:

Build

Clone the repository and catkin_make:

cd ~/catkin_ws/src
git clone https://github.com/Guo-ziwei/fusion
cd ../
catkin_make
source ~/catkin_ws/devel/setup.bash

run EKF:

rosrun ekf_fusion ekf_fusion_node bag_filename.bag

run batch:

rosrun gtsam_imu imu_preintegrated bag_filename.bag

it will take a long time to get the result and I will fix it in the future

run isam2:

rosrun gtsam_imu imu_preintegrated_sm bag_filename.bag

Performance

Test on MIt dataset

TODO

Now the demo is running off-line (reading data from bag) and I will turn it to online.