My understanding is that cam_R and cam_t together form the world-2-cam matrix, so cam_t does not represent the position of the camera in world coordinates. Given this, I am confused what this code snippet really is meant to do and if this is not a bug in the implementation.
I have a question about the meaning of a particular code snippet in the
CameraData.load_data
function, lines 325-237:My understanding is that
cam_R
andcam_t
together form the world-2-cam matrix, socam_t
does not represent the position of the camera in world coordinates. Given this, I am confused what this code snippet really is meant to do and if this is not a bug in the implementation.