This commit is contained in:
Yujian Zhang 2024-07-31 15:31:39 +02:00 committed by GitHub
commit ed4fb6347a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -77,7 +77,7 @@ def lidar_callback(point_cloud, point_list):
# We're negating the y to correclty visualize a world that matches
# what we see in Unreal since Open3D uses a right-handed coordinate system
points[:, :1] = -points[:, :1]
points[:, 1] = -points[:, 1]
# # An example of converting points from sensor to vehicle space if we had
# # a carla.Transform variable named "tran":