I working with other dataset (no kitti), but I need to convert it in kitti dataset format. I can't understand how calibration matrices were calculated in kitti. Example:
camera 2 (P2) calibration matrix from calib.txt:
[718.856 0 607.1928 -386.1448]
[ 0 718.856 185.2157 0 ]
[ 0 0 1 0 ]
I know, that
[718.856 0 607.1928]
[ 0 718.856 185.2157]
[ 0 0 1 ]
-- are K - camera intrinsic. But what the last column mean?
I suggested, that it's an offset from 0-th camera, measured in pixels. From kitti sensor setup, I know that Cam 2 offsets from Cam 0 for 0.06m negatively by axis X. Camera pixel size is 4.65um. But
0.06[m] / (4.65 * 10^(-6)[m]) != 386.1448 [pixels]
So what does the last column mean? And how to calculate calibration matrix just like in kitti.