You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Greet job, I forked your project and add the function of saving result to PCD file. Then I tried this on my own dataset. The mapping runs great, even I dont have the precise extrinsic. Now I have 3 questions:
The PCD file has some noise points. Where are they come from?
Is it possible to add loop closure on this basis?
There is a online extrinsic optimizing during mapping. Where can I get the final extrinsic arguments ?
The text was updated successfully, but these errors were encountered:
(1) Physically, there are several reasons that can cause noise, such as interference of multiple LiDARs, reflection from glass, and so on, please check your sensor setup.
(2) Besides, while publishing the point cloud for visualization, we drop the points with very low intensities,
therefore the noisy points may be the remaining low-intensity points (but still higher than those we droped) . You may try not to drop the low-intensity points.
The extrinsic parameter are stored in the state of kf. You may access the rotation and translation part of the extrinsic parameter in voxelMapping.cpp with
auto state = kf.get_x();
state.offset_R_L_I; // rotation of IMU-LiDAR extrinsic
state.offset_T_L_I; // translation of IMU-LiDAR extrinsic
We are also planning to add feature that publishes the extrinsic parameter as pose msg.
Greet job, I forked your project and add the function of saving result to PCD file. Then I tried this on my own dataset. The mapping runs great, even I dont have the precise extrinsic. Now I have 3 questions:
The PCD file has some noise points. Where are they come from?
Is it possible to add loop closure on this basis?
There is a online extrinsic optimizing during mapping. Where can I get the final extrinsic arguments ?
The text was updated successfully, but these errors were encountered: