98Xiao / liodom

Lidar Odometry

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

LiODOM - Adaptive Local Mapping for Robust LiDAR-Only Odometry

LiODOM is an open source C++ library for LiDAR-Only pose estimation and map building. It is based on minimizing a loss function derived from a set of weighted edge-to-line correspondences with a local map. The (unoptimized) global map is represented by a fast and efficient hash-based grid structure that speeds up searches and updates. The local map is obtained from the global map according to the current position of the vehicle.

Note that LiODOM is research code. The authors are not responsible for any errors it may contain. Use it at your own risk!

Conditions of use

LiODOM is distributed under the terms of the GPL3 License.

Related publication

The details of the algorithm are explained in the following publication:

LiODOM: Adaptive Local Mapping for Robust LiDAR-Only Odometry
Emilio Garcia-Fidalgo, Joan P. Company-Corcoles, Francisco Bonnin-Pascual and Alberto Ortiz
Submitted to IEEE RA-L, under review

A preprinted version can be found here. If you use this code, please cite:

@misc{Garcia-Fidalgo2021liodom,
      title={{LiODOM: Adaptive Local Mapping for Robust LiDAR-Only Odometry}}, 
      author={Emilio Garcia-Fidalgo and Joan P. Company-Corcoles and Francisco Bonnin-Pascual and Alberto Ortiz},
      year={2021},
      eprint={2111.03393},
      archivePrefix={arXiv},
      primaryClass={cs.RO}
}

Installation

Prerequisites

Build

  cd ~/your_workspace/src
  git clone https://github.com/emiliofidalgo/liodom.git
  cd ..
  catkin_make -DCMAKE_BUILD_TYPE=Release

Usage

For an example of use, see the launch file launch/liodom.launch.

Contact

If you have problems or questions using this code, please contact the author (emilio.garcia@uib.es). Feature requests and contributions are totally welcome.

Acknowledgements

Thanks to the authors of A-LOAM and F-LOAM for publishing their codes. Some parts of this library are inspired from them.

About

Lidar Odometry

License:GNU General Public License v3.0


Languages

Language:C++ 96.0%Language:CMake 4.0%