We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0f38270 commit ca087e3Copy full SHA for ca087e3
1 file changed
GEMstack/offboard/calibration/lidar_to_camera_manual.py
@@ -84,7 +84,7 @@ def crop(pc,ix=None,iy=None,iz=None):
84
return pc[mask]
85
86
87
-lidar_post = np.pad(lidar_points,((0,0),(0,1)),constant_values=1) @ lidar_ex.T
+lidar_post = np.pad(lidar_points,((0,0),(0,1)),constant_values=1) @ lidar_ex.T[:,:3]
88
lidar_post = crop(lidar_post,ix=(0,8),iy=(-5,5))
89
vis().add_pc(lidar_post).show()
90
0 commit comments