tinghuiz / SfMLearner

An unsupervised learning framework for depth and ego-motion estimation from monocular videos
MIT License
1.97k stars 557 forks source link

question about dump_xyz in evaluate_pose.py #145

Open Scarlett213 opened 2 years ago

Scarlett213 commented 2 years ago

The movement from this frame to the next frame should be to multiply the matrix to the current pose matrix, so theoretically, should the code be written as cam_to_world = np.dot(source_to_target_transformation, cam_to_world) instead of cam_to_world = np.dot( cam_to_world, source_to_target_transformation)?