No version for distro humble. Known supported distros are highlighted in the buttons above.
No version for distro jazzy. Known supported distros are highlighted in the buttons above.
No version for distro rolling. Known supported distros are highlighted in the buttons above.
![]() |
sc_aloam_velodyne package from carla-e2e-av-stack repoaloam_velodyne sc_aloam_velodyne loam_utils vehicle_ctrl carla_msgs lidar_to_grid pcl_conversions pcl_ros perception_pcl |
Package Summary
Tags | No category tags. |
Version | 0.0.0 |
License | BSD |
Build type | CATKIN |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/soumya997/carla-e2e-av-stack.git |
VCS Type | git |
VCS Version | main |
Last Updated | 2025-03-31 |
Dev Status | UNMAINTAINED |
CI status | No Continuous Integration |
Released | UNRELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
This is an advanced implentation of LOAM.
LOAM is described in the following paper:
J. Zhang and S. Singh. LOAM: Lidar Odometry and Mapping in Real-time.
Robotics: Science and Systems Conference (RSS). Berkeley, CA, July 2014.
Additional Links
No additional links.
Maintainers
- qintong
Authors
- Ji Zhang
SC-A-LOAM
News
-
2021-07-16
: This repository’s easy-to-use plug-and-play loop detection and pose graph optimization module (named SC-PGO) is also integrated with FAST-LIO2! see FAST_LIO_SLAM.
What is SC-A-LOAM?
- A real-time LiDAR SLAM package that integrates A-LOAM and ScanContext.
- A-LOAM for odometry (i.e., consecutive motion estimation)
- ScanContext for coarse global localization that can deal with big drifts (i.e., place recognition as kidnapped robot problem without initial pose)
- and iSAM2 of GTSAM is used for pose-graph optimization.
- This package aims to show ScanContext’s handy applicability.
- The only things a user should do is just to include
Scancontext.h
, callmakeAndSaveScancontextAndKeys
anddetectLoopClosureID
.
- The only things a user should do is just to include
Features
- A strong place recognition and loop closing
- We integrated ScanContext as a loop detector into A-LOAM, and ISAM2-based pose-graph optimization is followed. (see https://youtu.be/okML_zNadhY?t=313 to enjoy the drift-closing moment)
- A modular implementation
- The only difference from A-LOAM is the addition of the
laserPosegraphOptimization.cpp
file. In the new file, we subscribe the point cloud topic and odometry topic (as a result of A-LOAM, published fromlaserMapping.cpp
). That is, our implementation is generic to any front-end odometry methods. Thus, our pose-graph optimization module (i.e.,laserPosegraphOptimization.cpp
) can easily be integrated with any odometry algorithms such as non-LOAM family or even other sensors (e.g., visual odometry). -
- The only difference from A-LOAM is the addition of the
- (optional) Altitude stabilization using consumer-level GPS
- To make a result more trustworthy, we supports GPS (consumer-level price, such as U-Blox EVK-7P)-based altitude stabilization. The LOAM family of methods are known to be susceptible to z-errors in outdoors. We used the robust loss for only the altitude term. For the details, see the variable
robustGPSNoise
in thelaserPosegraphOptimization.cpp
file.
- To make a result more trustworthy, we supports GPS (consumer-level price, such as U-Blox EVK-7P)-based altitude stabilization. The LOAM family of methods are known to be susceptible to z-errors in outdoors. We used the robust loss for only the altitude term. For the details, see the variable
Prerequisites (dependencies)
- We mainly depend on ROS, Ceres (for A-LOAM), and GTSAM (for pose-graph optimization).
- For the details to install the prerequisites, please follow the A-LOAM and LIO-SAM repositiory.
- The below examples are done under ROS melodic (ubuntu 18) and GTSAM version 4.x.
How to use?
- First, install the abovementioned dependencies, and follow below lines.
mkdir -p ~/catkin_scaloam_ws/src
cd ~/catkin_scaloam_ws/src
git clone https://github.com/gisbi-kim/SC-A-LOAM.git
cd ../
catkin_make
source ~/catkin_scaloam_ws/devel/setup.bash
roslaunch aloam_velodyne aloam_mulran.launch # for MulRan dataset setting
Example Results
Riverside 01, MulRan dataset
- The MulRan dataset provides lidar scans (Ouster OS1-64, horizontally mounted, 10Hz) and consumer level gps (U-Blox EVK-7P, 4Hz) data.
- About how to use (publishing data) data: see here https://github.com/irapkaist/file_player_mulran
- example videos on Riverside 01 sequence.
- with consumer level GPS-based altitude stabilization: https://youtu.be/FwAVX5TVm04
- without the z stabilization: https://youtu.be/okML_zNadhY
- example result:
KITTI 05
- For KITTI (HDL-64 sensor), run using the command
roslaunch aloam_velodyne aloam_velodyne_HDL_64.launch # for KITTI dataset setting
- To publish KITTI scans, you can use mini-kitti publisher, a simple python script: https://github.com/gisbi-kim/mini-kitti-publisher
- example video (no GPS used here): https://youtu.be/hk3Xx8SKkv4
- example result:
Indoor
- ScanContext also works at indoor environments (use smaller sc_max_radius value).
- example video: https://youtu.be/Uv6_BRmxJho
- example result:
For Livox LiDAR
- Scan Context also works for Livox LiDAR data
- In this example, Scan Context is integrated with FAST-LIO (https://github.com/hku-mars/FAST_LIO).
- Note: No additional integration effort is required. A user just run seperately FAST-LIO node and SC-A-LOAM’s posegraphoptimization.cpp node!
- example video (tutoial and results): https://youtu.be/Fw9S6D6HozA
- example result:
For Navtech Radar
- Scan Context also works for Navtech Radar data!
- For the details, please see
- https://github.com/gisbi-kim/navtech-radar-slam
- used the pose-graph optimization node of this repository (SC-A-LOAM)
- example video
- https://github.com/gisbi-kim/navtech-radar-slam
Utilities
Data saver and Map construction
- Similar to the SC-LIO-SAM’s saver utility, we support pose and scan saver per keyframes. Using these saved data, the map (within ROI) can be constructed offline. See the
utils/python/makeMergedMap.py
and this tutorial. -
Below is the example results of MulRan dataset KAIST 03’s merged map, visualized using CloudCompare (download the map data here).
- A user also can remove dynamic points using these saved keyframe poses and scans. See this tutorial and our Removert project.
Acknowledgements
- Thanks to LOAM, A-LOAM, and LIO-SAM code authors. The major codes in this repository are borrowed from their efforts.
Maintainer
- please contact me through
paulgkim@kaist.ac.kr
TODO
- Delayed RS loop closings
- SLAM with multi-session localization
- More examples on other datasets (KITTI, complex urban dataset, etc.)
CHANGELOG
No CHANGELOG found.
Wiki Tutorials
This package does not provide any links to tutorials in it's rosindex metadata.
You can check on the ROS Wiki Tutorials page for the package.
Package Dependencies
System Dependencies
No direct system dependencies.
Dependant Packages
No known dependants.
Launch files
- launch/aloam_velodyne_HDL_32.launch
-
- rviz [default: true]
- launch/aloam_velodyne_VLP_16.launch
-
- rviz [default: true]
- launch/aloam_velodyne_HDL_64.launch
-
- rviz [default: true]
- launch/kitti_helper.launch
- launch/aloam_mulran.launch
-
- rviz [default: true]
Messages
No message files found.
Services
No service files found
Plugins
No plugins found.
Recent questions tagged sc_aloam_velodyne at Robotics Stack Exchange
No version for distro noetic. Known supported distros are highlighted in the buttons above.
No version for distro ardent. Known supported distros are highlighted in the buttons above.
No version for distro bouncy. Known supported distros are highlighted in the buttons above.
No version for distro crystal. Known supported distros are highlighted in the buttons above.
No version for distro eloquent. Known supported distros are highlighted in the buttons above.
No version for distro dashing. Known supported distros are highlighted in the buttons above.
No version for distro galactic. Known supported distros are highlighted in the buttons above.
No version for distro foxy. Known supported distros are highlighted in the buttons above.
No version for distro iron. Known supported distros are highlighted in the buttons above.
No version for distro lunar. Known supported distros are highlighted in the buttons above.
No version for distro jade. Known supported distros are highlighted in the buttons above.
No version for distro indigo. Known supported distros are highlighted in the buttons above.
No version for distro hydro. Known supported distros are highlighted in the buttons above.
No version for distro kinetic. Known supported distros are highlighted in the buttons above.
No version for distro melodic. Known supported distros are highlighted in the buttons above.