All Projects → irapkaist → Sc Lego Loam

irapkaist / Sc Lego Loam

LiDAR SLAM: Scan Context + LeGO-LOAM

Programming Languages

cpp
1120 projects

Projects that are alternatives of or similar to Sc Lego Loam

lt-mapper
A Modular Framework for LiDAR-based Lifelong Mapping
Stars: ✭ 301 (-9.34%)
Mutual labels:  mapping, lidar, slam, pointcloud
Pyicp Slam
Full-python LiDAR SLAM using ICP and Scan Context
Stars: ✭ 155 (-53.31%)
Mutual labels:  slam, loop, pointcloud, lidar
Loam velodyne
Laser Odometry and Mapping (Loam) is a realtime method for state estimation and mapping using a 3D lidar.
Stars: ✭ 1,135 (+241.87%)
Mutual labels:  slam, pointcloud, lidar, mapping
Loam noted
loam code noted in Chinese(loam中文注解版)
Stars: ✭ 455 (+37.05%)
Mutual labels:  slam, pointcloud, lidar, mapping
Awesome Robotic Tooling
Tooling for professional robotic development in C++ and Python with a touch of ROS, autonomous driving and aerospace.
Stars: ✭ 1,876 (+465.06%)
Mutual labels:  slam, lidar, mapping
awesome-lidar
😎 Awesome LIDAR list. The list includes LIDAR manufacturers, datasets, point cloud-processing algorithms, point cloud frameworks and simulators.
Stars: ✭ 217 (-34.64%)
Mutual labels:  lidar, slam, pointcloud
Lego Loam
LeGO-LOAM: Lightweight and Ground-Optimized Lidar Odometry and Mapping on Variable Terrain
Stars: ✭ 1,138 (+242.77%)
Mutual labels:  slam, lidar, mapping
direct lidar odometry
Direct LiDAR Odometry: Fast Localization with Dense Point Clouds
Stars: ✭ 202 (-39.16%)
Mutual labels:  mapping, lidar, slam
puma
Poisson Surface Reconstruction for LiDAR Odometry and Mapping
Stars: ✭ 302 (-9.04%)
Mutual labels:  mapping, lidar, slam
UrbanLoco
UrbanLoco: A Full Sensor Suite Dataset for Mapping and Localization in Urban Scenes
Stars: ✭ 147 (-55.72%)
Mutual labels:  mapping, lidar, slam
ros-vrep-slam
ROS and V-REP for Robot Mapping and Localization
Stars: ✭ 39 (-88.25%)
Mutual labels:  mapping, slam
ndtpso slam
ROS package for NDT-PSO, a 2D Laser scan matching algorithm for SLAM
Stars: ✭ 32 (-90.36%)
Mutual labels:  lidar, slam
python-graphslam
Graph SLAM solver in Python
Stars: ✭ 118 (-64.46%)
Mutual labels:  mapping, slam
continuous-fusion
(ROS) Sensor fusion algorithm for camera+lidar.
Stars: ✭ 26 (-92.17%)
Mutual labels:  lidar, pointcloud
PointPainting
This repository is an open-source PointPainting package which is easy to understand, deploy and run!
Stars: ✭ 152 (-54.22%)
Mutual labels:  lidar, pointcloud
GA SLAM
🚀 SLAM for autonomous planetary rovers with global localization
Stars: ✭ 40 (-87.95%)
Mutual labels:  mapping, slam
LVIO-SAM
A Multi-sensor Fusion Odometry via Smoothing and Mapping.
Stars: ✭ 143 (-56.93%)
Mutual labels:  mapping, slam
opensource slam noted
open source slam system notes
Stars: ✭ 119 (-64.16%)
Mutual labels:  lidar, slam
SLAM Qt
My small SLAM simulator to study "SLAM for dummies"
Stars: ✭ 47 (-85.84%)
Mutual labels:  lidar, slam
mola-fe-lidar
MOLA module: Front-end for point-cloud sensors based on generic ICP algorithms. LiDAR odometry and loop closure.
Stars: ✭ 16 (-95.18%)
Mutual labels:  lidar, slam

SC-LeGO-LOAM

NEWS (Nov, 2020)

Real-time LiDAR SLAM: Scan Context (18 IROS) + LeGO-LOAM (18 IROS)

  • This repository is an example use-case of Scan Context C++ , the LiDAR place recognition method, for LiDAR SLAM applications.
  • For more details for each algorithm please refer to
    Scan Context https://github.com/irapkaist/scancontext
    LeGO LOAM https://github.com/facontidavide/LeGO-LOAM-BOR
  • Just include Scancontext.h. For details see the file mapOptmization.cpp.
  • This example is integrated with LOAM, but our simple module (i.e., Scancontext.h) can be easily integrated with any other key-frame-based odometry (e.g., wheel odometry or ICP-based odometry).
  • Current version: April, 2020.

Features

  • Light-weight: a single header and cpp file named "Scancontext.h" and "Scancontext.cpp"
    • Our module has KDtree and we used nanoflann. nanoflann is an also single-header-program and that file is in our directory.
  • Easy to use: A user just remembers and uses only two API functions; makeAndSaveScancontextAndKeys and detectLoopClosureID.
  • Fast: The loop detector runs at 10-15Hz (for 20 x 60 size, 10 candidates)

Examples

Scan Context integration

  • For implementation details, see the mapOptmization.cpp; all other files are same as the original LeGO-LOAM.
  • Some detail comments
    • We use non-conservative threshold for Scan Context's nearest distance, so expect to maximise true-positive loop factors, while the number of false-positive increases.
    • To prevent the wrong map correction, we used Cauchy (but DCS can be used) kernel for loop factor. See mapOptmization.cpp for details. (the original LeGO-LOAM used non-robust kernel). We found that Cauchy is emprically enough.
    • We use both two-type of loop factor additions (i.e., radius search (RS)-based as already implemented in the original LeGO-LOAM and Scan context (SC)-based global revisit detection). See mapOptmization.cpp for details. SC is good for correcting large drifts and RS is good for fine-stitching.
    • Originally, Scan Context supports reverse-loop closure (i.e., revisit a place in a reversed direction) and examples in here (py-icp slam) . Our Scancontext.cpp module contains this feature. However, we did not use this for closing a loop in this repository because we found PCL's ICP with non-eye initial is brittle.

How to use

  • Place the directory SC-LeGO-LOAM under user catkin work space
  • For example,
    cd ~/catkin_ws/src
    git clone https://github.com/irapkaist/SC-LeGO-LOAM.git
    cd ..
    catkin_make
    source devel/setup.bash
    roslaunch lego_loam run.launch
    

MulRan dataset

Dependencies

  • All dependencies are same as LeGO-LOAM (i.e., ROS, PCL, and GTSAM).
  • We used C++14 to use std::make_unique in Scancontext.cpp but you can use C++11 with slightly modifying only that part.

Cite SC-LeGO-LOAM

@INPROCEEDINGS { gkim-2018-iros,
  author = {Kim, Giseop and Kim, Ayoung},
  title = { Scan Context: Egocentric Spatial Descriptor for Place Recognition within {3D} Point Cloud Map },
  booktitle = { Proceedings of the IEEE/RSJ International Conference on Intelligent Robots and Systems },
  year = { 2018 },
  month = { Oct. },
  address = { Madrid }
}

and

@inproceedings{legoloam2018,
  title={LeGO-LOAM: Lightweight and Ground-Optimized Lidar Odometry and Mapping on Variable Terrain},
  author={Shan, Tixiao and Englot, Brendan},
  booktitle={IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS)},
  pages={4758-4765},
  year={2018},
  organization={IEEE}
}

Contact

Misc notes

  • You may also be interested in this (from the other author's) implementation :)
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].