utiasSTARS / pykitti

Python tools for working with KITTI data.
MIT License
1.14k stars 239 forks source link

Tr_Cam_to_Road #45

Open jburke2018 opened 5 years ago

jburke2018 commented 5 years ago

Looking for the script that generated the Tr_cam_to_road matrix in the calibration files used in the training and test data test. Or an explanation of how this Matrix is formed.

slinshady89 commented 5 years ago

openCV 3D<->2D should help you there. You project from world to camera by [u,v,1]^T = K R t * [x, y, z, 1]^T So the other way around you need K_inv image