Update nuScenes & Waymo Optimization (#47)

* update can bus

* Create LICENSE

* update waymo doc

* protobuf requirement

* just warning

* Add warning for proto

* update PR template

* fix length bug

* try sharing nusc

* imu heading

* fix 161 168

* add badge

* fix doc

* update doc

* format

* update cp

* update nuscenes interface

* update doc

* prediction nuscenes

* use drivable aread for nuscenes

* allow converting prediction

* format

* fix bug

* optimize

* clean RAM

* delete more

* restore to

* add only lane

* use token

* add warning

* format

* fix bug
This commit is contained in:
Quanyi Li
2023-12-02 13:50:44 +00:00
committed by GitHub
parent 7ec01fc8c1
commit 2db22c74a8
18 changed files with 478 additions and 146 deletions

View File

@@ -88,7 +88,7 @@
"\n",
"def make_GIF(frames, name=\"demo.gif\"):\n",
" print(\"Generate gif...\")\n",
" imgs = [pygame.surfarray.array3d(frame) for frame in frames]\n",
" imgs = [frame for frame in frames]\n",
" imgs = [Image.fromarray(img) for img in imgs]\n",
" imgs[0].save(name, save_all=True, append_images=imgs[1:], duration=50, loop=0)"
]