aevainc / Doppler-ICP

Official code release for Doppler ICP
http://www.roboticsproceedings.org/rss18/p015.pdf
MIT License
164 stars 21 forks source link

About Odometry and Relative Pose #5

Open tomy807 opened 1 year ago

tomy807 commented 1 year ago

Hi! I sorry for that I'm not good at English.

I am begginer at Lidar ICP So I am studying with Your Code. Thank You.

I curious about this code

    results['poses'].append(np.linalg.inv(result.transformation))
    results['ref_poses'].append(np.linalg.inv(ref_transform))
  1. Why is inversed? I learned that pose is same as transformation.

    source = utils.load_point_cloud(pcd_files[i])
    target = utils.load_point_cloud(pcd_files[i + 1])
  2. why target is not Transformed? I learned that transform target to World Coordinate and Find transformation from source to target.

Thank You For Your Code!