You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# 3D bounding box vertices [3, 8]
x = [l / 2, l / 2, -l / 2, -l / 2, l / 2, l / 2, -l / 2, -l / 2]
y = [0, 0, 0, 0, -h, -h, -h, -h]
z = [w / 2, -w / 2, -w / 2, w / 2, w / 2, -w / 2, -w / 2, w / 2]
box_coord = np.vstack([x, y, z])
Does it work for any kind of coordinate systesms? i think kitti uses FLU/NWU coordinate system, but if we have ENU (East Nort Up) or NED (North East Down) etc.. I believe it needs to be changed based on the coordinate system that we use. If it is so, would you mind sharing some reference to understand more on this? Thanks!
The text was updated successfully, but these errors were encountered:
I could see you have something below
Does it work for any kind of coordinate systesms? i think kitti uses FLU/NWU coordinate system, but if we have ENU (East Nort Up) or NED (North East Down) etc.. I believe it needs to be changed based on the coordinate system that we use. If it is so, would you mind sharing some reference to understand more on this? Thanks!
The text was updated successfully, but these errors were encountered: