This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| How to get the proper OpenGL projection matrix from the OpenCV camera calibration values? | |
| For the simple common case where the OpenCV camera matrix has the form: | |
| |fx 0 cx| | |
| |0 fy cy| | |
| |0 0 1| | |
| The corresponding OpenGL projection matrix can be computed like this: |