We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
According to your data description:
Poses are camera-to-world, not world-to-camera transformations.
Then why does normalize_cam_dict.py save W2C in the cam_dict? Shouldn't it be C2W (cam to world)?
The text was updated successfully, but these errors were encountered:
You are right! You could get C2W easily by taking the inverse of W2C, and vice versa.
Sorry, something went wrong.
So I have to change this line
return np.linalg.inv(C2W)
to
return C2W
Is this right? The experiments seem better so far.
Yes, or you could do such matrix inverses while converting the json camera file to text files.
No branches or pull requests
According to your data description:
Then why does normalize_cam_dict.py save W2C in the cam_dict? Shouldn't it be C2W (cam to world)?
The text was updated successfully, but these errors were encountered: