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
In the renderer.py line 43 a diagonal FOV of 71.28 degrees is used: camera_fov = 71.28 / 180 * math.pi
camera_fov = 71.28 / 180 * math.pi
however in the stereo_matching.py line 521 the focal length is 446.31. f = torch.tensor(446.31) # focal length of the sensor
f = torch.tensor(446.31) # focal length of the sensor
may the authors elaborate on how the focal length was calculated from camera's diagonal FOV?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In the renderer.py line 43 a diagonal FOV of 71.28 degrees is used:
camera_fov = 71.28 / 180 * math.pi
however in the stereo_matching.py line 521 the focal length is 446.31.
f = torch.tensor(446.31) # focal length of the sensor
may the authors elaborate on how the focal length was calculated from camera's diagonal FOV?
The text was updated successfully, but these errors were encountered: