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
I found something illogical in function velo_points_2_pano of Convert_Velo_2_Pano_detail.ipynb;
velo_points_2_pano
Convert_Velo_2_Pano_detail.ipynb
def velo_points_2_pano(points, v_res, h_res, v_fov, h_fov, depth=False): # Projecting to 2D x = points[:, 0] y = points[:, 1] z = points[:, 2] dist = np.sqrt(x ** 2 + y ** 2 + z ** 2) # project point cloud to 2D point map y_img = -(np.arctan2(z, dist) / (v_res * (np.pi / 180)))
Should dist = np.sqrt(x ** 2 + y ** 2) rather than dist = np.sqrt(x ** 2 + y ** 2 + z ** 2)? I discussed with ChatGPT4,0 who also agrees with me.
dist = np.sqrt(x ** 2 + y ** 2)
dist = np.sqrt(x ** 2 + y ** 2 + z ** 2)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I found something illogical in function
velo_points_2_pano
ofConvert_Velo_2_Pano_detail.ipynb
;Should
dist = np.sqrt(x ** 2 + y ** 2)
rather thandist = np.sqrt(x ** 2 + y ** 2 + z ** 2)
? I discussed with ChatGPT4,0 who also agrees with me.The text was updated successfully, but these errors were encountered: