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
在Lanet3D_ext.py中,有这样的公式,这公式是怎么来的?
# homograph ground to camera # H_g2cam = np.array([[1, 0, 0], # [0, np.cos(np.pi / 2 + cam_pitch), args.cam_height], # [0, np.sin(np.pi / 2 + cam_pitch), 0]]) H_g2cam = np.array([[1, 0, 0], [0, np.sin(-cam_pitch), args_cam_height], [0, np.cos(-cam_pitch), 0]])
cam的坐标系是在哪定义?为什么是这个样子?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
在Lanet3D_ext.py中,有这样的公式,这公式是怎么来的?
cam的坐标系是在哪定义?为什么是这个样子?
The text was updated successfully, but these errors were encountered: