Negative values in the intrinsics matrix generated in MOVi?
I am trying to use the code provided in MOVi challenge to generate synthetic datasets by myself. But I am kind of confused about the format of intrinsic matrix of the generated data, because of the unexpected negative values. For example, the intrinsic matrix of the generated data is:
[[ 1.09375, 0, -0.5],
[ 0, -1.09375, -0.5],
[ 0, 0, -1]]
Usually, the format of intrinsic matrix is defined as follows:
[[fx, 0, cx],
[0, fy, cy],
[0, 0, 1]]
It seems that the negative values in the third column ([-0.5, -0.5, -1]^T) conflict with the well-used one ([cx, cy, 1]^T) as far as I know.
Could you please explain the setting of these negative values in the intrinsic matrix?
@ToughStoneX Hi, I encountered the same issue when projecting the world coordinate system into the camera coordinate system. Have you been able to find a solution yet?