srirampr22 / 4D-RRIO

A tightly coupled 4D radar inertial odometry via smoothing and mapping framework in C++ (Open Source) to address localization challenges in adverse weather conditions and dynamic scenes where traditional vision and LIDAR-based systems fail.
GNU General Public License v3.0
10 stars 1 forks source link

4D-RIO: 4D Radar Inertial Odometry (Tightly coupled 4D Radar IMU fusion approach)

A Roboust localization framework for Autnomous driving in Adverse weather conditions and Geometrically degenerate environments

4DRadarSLAM is an open source ROS package for real-time 6DOF SLAM using a 4D Radar and 9 axis IMU. It is based on 3D Graph SLAM with (Adaptive Probability Distribution GICP) scan matching-based radar odometry estimation, a tightly inertial fusion framwork with On manifold IMU preintegration and Incremental Graph optimization. Demonstrated a significant improvement in performance, reducing relative odometry error in translation by 14% and rotation by 26% compared to the baseline radar-only odometry methods. We extensively tested our alogithm using NTU 4D Radar-centric Multi-Modal Dataset for Localization and Mapping in outdoor structured (buildings), unstructured (trees and grasses) and semi-structured environments and Dynamic traffic scenes. The yellow points represent the filtered incomming radar pcl data, the red points denote outliers and points that belong to dynamic agents/objects in the scene. the green trajectory represents the fused radar+Inertial estimated odomtery.

drawing

1. Dependency

1.1 Ubuntu and ROS

Ubuntu 64-bit 18.04 or 20.04. ROS Melodic or Noetic. ROS Installation:

1.2 4DRadarSLAM requires the following libraries:

2. System architecture

4D-RRIO consists of three nodelets.

The input point cloud is first downsampled by preprocessing_nodelet; the radar pointcloud is transformed to Livox LiDAR frame; estimate its ego velocity and remove dynamic objects, and then passed to the next nodelets. While scan_matching_odometry_nodelet estimates the sensor pose by iteratively applying a scan matching between consecutive frames (i.e., odometry estimation). the imu_preintegration_node handles the fusion of high rate IMU data from a 9 axis VectorNav-100 IMU leveraging On-Manifold IMU-Preintegration and Graph optimization via Incremental smoothing.

3. Parameter tuning guide

The mapping quality largely depends on the parameter setting. In particular, scan matching parameters have a big impact on the result. Tune the parameters accoding to the following instructions:

3.1 Point cloud registration

This parameter allows to change the registration method to be used for odometry estimation and loop detection. Our code gives five options: ICP, NDT_OMP, FAST_GICP, FAST_APDGICP, FAST_VGICP.

FAST_APDGICP is the implementation of our proposed Adaptive Probability Distribution GICP, it utilizes OpenMP for acceleration. Note that FAST_APDGICP requires extra parameters. Point uncertainty parameters:

dist_var means the uncertainty of a point’s range measurement at 100m range, azimuth_var and elevation_var denote the azimuth and elevation angle accuracy (degree)

4. Run the package

Download the loop2 dataset from rosbag (More datasets: NTU4DRadLM) to any folder as you wish, and then add the path to the rosbag in rrio_dataset_player.launch. Then go ahead an launch this launch file below:

roslaunch rrio radar_inertial_odometry.launch

You can choose the dataset to play at end of the launch file. In our project, we did evaluation on two datasets, localization results are presented below:

Results from running our alforithm on the carpark dataset:

drawing drawing

5. Evaluate the results

In our project, we use rpg_trajectory_evaluation, the performance indices used are RE (relative odometry error).

7. Acknowlegement

  1. 4DRRIO is based on koide3/hdl_graph_slam
  2. christopherdoer/reve radar ego-velocity estimator
  3. TixiaoShan/LIO-SAM LIO-SAM: Tightly-coupled Lidar Inertial Odometry via Smoothing and Mapping
  4. FastAPD-GICP/zhuge2333 Adaptive Probability Distribution GICP algorithm based on fast_gicp
  5. C. Forster, L. Carlone, F. Dellaert and D. Scaramuzza, "On-Manifold Preintegration for Real-Time Visual--Inertial Odometry," in IEEE Transactions on Robotics, vol. 33, no. 1, pp. 1-21, Feb. 2017, doi: 10.1109/TRO.2016.2597321. keywords: {Smoothing methods;Optimization;Estimation;Real-time systems;Manifolds;Computational modeling;Jacobian matrices;Computer vision;sensor fusion;visual--inertial odometry (VIO)}