Closed ramiro999 closed 1 week ago
Thank you for your interest in our work. I agree with your suggestionâintegrating IMU and GNSS observations into the LiDAR SLAM pipeline would indeed enhance the absolute accuracy and robustness of the system. Adding IMU preintegration and GNSS factors to the factor graph of PIN-SLAM should be feasible and not too cubersome. While these features are not part of the current PIN-SLAM framework, they represent a promising direction for future development. We'd also welcome any pull requests contributing to GNSS-INS-LiDAR SLAM fusion.
I understand, thanks for the answer, I have had an idea of how to integrate data IMU and GNSS, but I do not know how much it matches, first, I have reviewed the code, and I notice that in the âutilsâ folder there is a module called âpoint_cloud2.pyâ under that same logic I have created a module called âimu. pyâ that reads imu data from rosbags files with point cloud, imu and gnss topics, but now I don't know where to import that module, maybe in the main module âpin_slam.pyâ for the reconstruction, or add it in each specific module where it calls âpoint_cloud2.pyâ.
Sorry for the late reply.
For loading the per-frame IMU and GNSS data, you may use this line: https://github.com/PRBonn/PIN_SLAM/blob/306c83d13ecace46a10e8d63ceadb8349c569034/dataset/slam_dataset.py#L239
Then you can provide the IMU and GNSS data in the getitem() function of each data loader class. For the return frame_data
dictionary, you may add additional keys such as 'imu'
and 'gnss'
. For the processing of the IMU and GNSS data, you may create a utility class such as IMUPreintegrator
or EKFProcessor
and then take the cur_frame_imus
as the input.
I understand that PIN-SLAM focuses on globally consistent mapping using implicit neural representations. However, I wonder if the combination with inertial sensors and GNSS could improve robustness in scenarios where LiDAR odometry is not sufficient, or in cases where the sensor records data from a drone and the drone performs rotational maneuvers.