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
x= [i[0] for i in sdc_fut_traj]
y= [i[1] for i in sdc_fut_traj]
from PIL import Image
import matplotlib.pyplot as plt
file_path = lidar_top_data_start["filename"]
img = Image.open("/mnt/ai_testing/02_datasets/UniAD/data/nuscenes/" + file_path)
plt.imshow(img)
plt.scatter(y,x)
plt.show()
But that makes no meaning, the trajectory is not meaningful
The text was updated successfully, but these errors were encountered:
Given an instance, want to visualize the ego pose on CAM_FRONT image for the next 12 time steps:
Now i plot the future trajectory on the image:
But that makes no meaning, the trajectory is not meaningful
The text was updated successfully, but these errors were encountered: