rpng / MINS

An efficient and robust multisensor-aided inertial navigation system with online calibration that is capable of fusing IMU, camera, LiDAR, GPS/GNSS, and wheel sensors. Use cases: VINS/VIO, GPS-INS, LINS/LIO, multi-sensor fusion for localization and mapping (SLAM). This repository also provides multi-sensor simulation and data.
GNU General Public License v3.0
427 stars 74 forks source link

use mins to locate on a pre-built point cloud map #34

Closed piedaochuan1234 closed 1 month ago

piedaochuan1234 commented 1 month ago

Thanks for your great work.

I would like to use mins for localization based on an pre-built point cloud map. In the original method of mins, the map frame anchored to the latest IMU frame which can cause the map frame to be affected by the state estimation . Therefore, my idea is not to transform the point cloud map to the clone pose in real time, and frame will be like: map -- C -- C -- I

As a beginner, I am wondering if there are any suggestions or if the above idea is feasible?

lnexenl commented 1 month ago

How do you want to utilize pre-built point cloud map? By registering Lidar observations to the cloud to the pre-built map or something else? I believe that you can consider the estimated poses from the pre-built map as outputs from a fake vicon sensor, and you don't need to do much modification to the code.

piedaochuan1234 commented 1 month ago

Yes, as you say, I want to register Lidar observations to the cloud with the pre-built map. I will learn how to implement it through Vicon.

Thanks

lnexenl commented 1 month ago

I have done some work on prior lidar map assisted odometry, you may refer to PPCA-VINS. Hope this helps.

piedaochuan1234 commented 1 month ago

@lnexenl, Thanks for the quick reply and suggestions. I've tried using nano_gicp and ndt, but the CPU usage in the virtual machine is very high. I will try to estimate the global pose with a lightweight method, such as AMCL, as a fake Vicon measurements