You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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:
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?
The text was updated successfully, but these errors were encountered:
@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?
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:
Usually, the format of intrinsic matrix is defined as follows:
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?
The text was updated successfully, but these errors were encountered: