shrijitsingh99 / GLIO

GLIO: Tightly-Coupled GNSS/LiDAR/IMU Integration for Continuous and Drift-free State Estimation

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

3DLA-GLIO

drawing

GLIO: Tightly-Coupled GNSS/LiDAR/IMU Integration for Continuous and Drift-free State Estimation of Intelligent Vehicles in Urban Areas. paper link

GLIO is an accurate and robust online GNSS/LiDAR/IMU odometry system that tightly fuses the raw measurements from GNSS (pseudorange and Doppler), LiDAR, and IMU through non-linear factor graph optimization (FGO), which enables globally continuous and drift-free pose estimation even in highly challenging environments like urban canyons.

The package is based on C++ which is compatible with the robot operation system (ROS) platform. Meanwhile, this package combines the RTKLIB (version: 2.4.3 b33) to read/decode the GNSS RINEX files. Users from the Robotics field can easily have access to GNSS raw data for further study.

Authors: Xikun Liu, Weisong Wen, Li-ta Hsu from the Intelligent Positioning and Navigation Laboratory, The Hong Kong Polytechnic University.

System pipeline

drawing

We propose a system that utilizes two stages of the optimization to achieve global consistent and continuous pose estimation in real-time.

  • In the first stage of optimization-the optimizeSlidingWindow stage, the sliding-window-based FGO is employed to integrate the GNSS-related factors, IMU pre-integration factor, and scan-to-map-based LiDAR factor for efficient odometry estimation.
  • In the second stage of optimization-the optimizeBatch stage, the LiDAR factor is employed as a scan-to-multiscan scheme to maintain global consistency and improve the robustness to the GNSS outlier by large-scale batch optimization.

Package feature:

drawing

In this package, different fusion strategies for GNSS/LIO integration are implemented for comparison and further development, including

  • The pose graph-based loosely-coupled GNSS/LIO integration
  • The tightly-coupled GNSS/LIO integration with relative pose constraints
  • The tightly-coupled GNSS/LiDAR/IMU integration with scan-to-multiscan LiDAR feature constraints.

The trajectories of different fusion methods are shown as figure below.

drawing

To enable and visualize different fusion results, following parameters need to be noted.

  • visualization/LCinLocal: Set true for activation and visualization of loosely-coupled GNSS/LIO fusion in ENU frame.
  • Estimator/enable_batch_fusion: Set true for activation and visualization of tightly-coupled batch-based GNSS/LiDAR/IMU integration in ENU frame.
  • Estimator/sms_fusion_level: Types of scan-to-multiscan constraints in batch-based integration. Set 0 for relative pose constraints, 1 for LiDAR surf feature constraints.

1. Prerequisites

1.1 Ubuntu and ROS

Ubuntu 64-bit 18.04, ROS Melodic. ROS Installation. The package is tested on Ubuntu 18.04 with ROS Melodic.

1.2. Ceres Solver and GTSAM

Ceres Solver and GTSAM are used for optimization and fusion, for the installation of Ceres-solver, please refer to the instructions on GraphGNSSLib.

1.3. Eigen

Eigen 3.3.3 is used for matrix calculation.

1.4. Extra Libraries

sudo apt-get install ros-melodic-novatel-msgs

1.5. Pre-built Libraries

GraphGNSSLib V1.1 and gnss_comm is pre-built in the package.

2. Build GLIO

Clone the repository and catkin_make:

mkdir GLIO_ws/src
cd ~/GLIO_ws/src
git clone https://github.com/XikunLiu-huskit/GLIO.git
cd ../
# if you fail in the last catkin_make, please source and catkin_make again
catkin_make
source devel/setup.bash

3. Run GLIO with dataset UrbanNav

Launch GLIO via:

roslaunch GLIO run_urban_hk.launch

Wait for GNSS data preprocessing, when the GNSS trajectory appears, play the bag:

rosbag play UrbanNav-HK_Whampoa-20210521_sensors.bag

Visit UrbanNav and download more data sequences follow the instruction.

4. Paper

Thank you for citing our paper GLIO: Tightly-Coupled GNSS/LiDAR/IMU Integration for Continuous and Drift-free State Estimation of Intelligent Vehicles in Urban Areas (IEEE T-IV) if you find this code useful.

@article{liu2023glio,
  title={GLIO: Tightly-Coupled GNSS/LiDAR/IMU Integration for Continuous and Drift-free State Estimation of Intelligent Vehicles in Urban Areas},
  author={Liu, Xikun and Wen, Weisong and Hsu, Li-Ta},
  journal={IEEE Transactions on Intelligent Vehicles},
  year={2023},
  publisher={IEEE}
}

5. Acknowledgements

GLIO is based on LiLi-OM, GraphGNSSLib, and GVINS. The rviz_satellite is used for visualization. Huge Thanks to their great work.

About

GLIO: Tightly-Coupled GNSS/LiDAR/IMU Integration for Continuous and Drift-free State Estimation


Languages

Language:C 38.8%Language:C++ 29.3%Language:Pascal 17.1%Language:MATLAB 10.0%Language:Fortran 2.3%Language:CMake 1.2%Language:Makefile 0.5%Language:HTML 0.5%Language:Batchfile 0.2%Language:Python 0.1%Language:Dockerfile 0.0%Language:Shell 0.0%Language:Prolog 0.0%