HKUST-Aerial-Robotics / A-LOAM

Advanced implementation of LOAM
Other
2.08k stars 789 forks source link

ground pose frame and laser points frame #12

Closed narutojxl closed 5 years ago

narutojxl commented 5 years ago

Hi @shaozu , thanks for your share. According to kitti_development_kit/readme.txt, GT pose is left camera(Z-front, X-right, Y-down) in left_camera_0th(world) pose. when convert GT pose into loam's camera_init frame(Z-front, X-left, Y-up), use R_transform << 0, 0, 1, -1, 0, 0, 0, -1, 0;. I think R_camInit_world = Rz(-pi), p_camInit = R_camInit_world * GT_pose, should be R_transform << -1, 0, 0, 0, -1, 0, 0, 0, 1?

When publish "/velodyne_points" to loam, each points is in camera_init loam's world frame, why not is velodyne frame?

Thanks in advance!

LongruiDong commented 4 years ago

Hi , I am also confusing about that, do you understand now? thanks !