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
MonoFlex/data/datasets/kitti_utils.py
Lines 356 to 357 in ec6da01
x = (uv_depth[:, 0] - self.c_u * uv_depth[:, 2]) / self.f_u + self.b_x y = (uv_depth[:, 1] - self.c_v * uv_depth[:, 2]) / self.f_v + self.b_y
The text was updated successfully, but these errors were encountered:
If calib.P2[2,3] is not considered, the original formula is correct.
Sorry, something went wrong.
No branches or pull requests
MonoFlex/data/datasets/kitti_utils.py
Lines 356 to 357 in ec6da01
感觉公式好像有点问题,是不是应该这样写呀
x = (uv_depth[:, 0] - self.c_u * uv_depth[:, 2]) / self.f_u + self.b_x
y = (uv_depth[:, 1] - self.c_v * uv_depth[:, 2]) / self.f_v + self.b_y
The text was updated successfully, but these errors were encountered: