Skip to content

IESKF-LIO reference to fast_lio1.0(参考fast-lio早期版本,复现的fast-lio2)

Notifications You must be signed in to change notification settings

LamHoCN/ESKF_LIO

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

iESKF-lio

This repository is a modified LiDAR-inertial odometry system. The system is developed based on the open-source odometry framework FAST-LIO to get the odometry information. And the feature extract moudle is implemented based on LIO-SAM .

Modification

  • Feature extract moudle is implemented based on lio-sam, this moudle support multiple lidar types(such as velodyne,ouster,robosense, livox etc.);
  • laser mapping moudle is implemented base on fast-lio 1.0, Use Eigen matrix instead of IKFom;
  • use ikdtree manage the map;
  • the new laser mapping moudle support multiple lidar types: both traditional spinning lidar (velodyne, ouster, robsense etc.) and solid-state lidar(livox);
  • add online extrinsic calib as fast-lio2

DEMO

drawing

Demo video

drawing

[Demo video](https://www.bilibili.com/video/BV1FG4y1v7co/?vd_source=438f630fe29bd5049b24c7f05b1bcaa3)

TODO

  • add ivox
  • add extrinsic parameter calibration
  • compare with FAST-LIO2
  • add test video

----------------------------------------------------------------------- divide line ------------------------------------------------------------------------

FAST-LIO

FAST-LIO (Fast LiDAR-Inertial Odometry) is a computationally efficient and robust LiDAR-inertial odometry package. It fuses LiDAR feature points with IMU data using a tightly-coupled iterated extended Kalman filter to allow robust navigation in fast-motion, noisy or cluttered environments where degeneration occurs. Our package address many key issues:

  1. Fast iterated Kalman filter for odometry optimization;
  2. Automaticaly initialized at most steady environments;
  3. Parallel KD-Tree Search to decrease the computation;
  4. Robust feature extraction;

Developers

Wei Xu 徐威: Laser mapping and pose optimization;

Zheng Liu 刘政: Features extraction.

To know more about the details, please refer to our related paper:)

Our related paper: our related papers are now available on arxiv:

FAST-LIO: A Fast, Robust LiDAR-inertial Odometry Package by Tightly-Coupled Iterated Kalman Filter

Our related video: https://youtu.be/iYCY6T79oNU

1. Prerequisites

1.1 Ubuntu and ROS

Ubuntu >= 18.04 (Ubuntu 16.04 is not supported)

ROS >= Melodic. ROS Installation

1.2. PCL && Eigen && openCV

PCL >= 1.8, Follow PCL Installation.

Eigen >= 3.3.4, Follow Eigen Installation.

OpenCV >= 3.2, Follow openCV Installation.

1.3. livox_ros_driver

Follow livox_ros_driver Installation.

2. Build

Clone the repository and catkin_make:

    cd ~/catkin_ws/src
    git clone https://github.com/XW-HKU/fast_lio.git
    cd ..
    catkin_make
    source devel/setup.bash

Remarks:

  • If you want to use a custom build of PCL, add the following line to ~/.bashrc export PCL_ROOT={CUSTOM_PCL_PATH}

3. Directly run

3.1 For indoor environments (support maximum 50hz frame rate)

Connect to your PC to Livox Avia LiDAR by following Livox-ros-driver installation, then

    ....
    roslaunch fast_lio mapping_avia.launch
    roslaunch livox_ros_driver livox_lidar_msg.launch
    

Remarks:

3.2 For outdoor environments

Connect to your PC to Livox Avia LiDAR following Livox-ros-driver installation, then

    ....
    roslaunch fast_lio mapping_avia_outdoor.launch
    roslaunch livox_ros_driver livox_lidar_msg.launch
    

4. Rosbag Example

4.1 Indoor rosbag (Livox Avia LiDAR)

Download avia_indoor_quick_shake_example1 or avia_indoor_quick_shake_example2 and then

roslaunch fast_lio mapping_avia.launch
rosbag play YOUR_DOWNLOADED.bag

4.2 Outdoor rosbag (Livox Avia LiDAR)

Download avia_hku_main building_mapping and then

roslaunch fast_lio mapping_avia_outdoor.launch
rosbag play YOUR_DOWNLOADED.bag

5.Implementation on UAV

In order to validate the robustness and computational efficiency of FAST-LIO in actual mobile robots, we build a small-scale quadrotor which can carry a Livox Avia LiDAR with 70 degree FoV and a DJI Manifold 2-C onboard computer with a 1.8 GHz Intel i7-8550U CPU and 8 G RAM, as shown in below.

6.Acknowledgments

Thanks for LOAM(J. Zhang and S. Singh. LOAM: Lidar Odometry and Mapping in Real-time), Livox_Mapping and Loam_Livox.

About

IESKF-LIO reference to fast_lio1.0(参考fast-lio早期版本,复现的fast-lio2)

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 97.1%
  • Python 2.2%
  • CMake 0.7%