Thanks for publishing such a well documented package!
A minor error in the demo: When I tried to run nuScenes-Lyft Qualitative.ipynb, the line ell = patches.Ellipse(mean, v[0], v[1], 180. + angle, color=color) didn't run.
It should be ell = patches.Ellipse(mean, v[0], v[1], angle=180. + angle, color=color) in the last couple versions of matplotlib
Thanks for publishing such a well documented package!
A minor error in the demo: When I tried to run nuScenes-Lyft Qualitative.ipynb, the line ell = patches.Ellipse(mean, v[0], v[1], 180. + angle, color=color) didn't run.
It should be
ell = patches.Ellipse(mean, v[0], v[1], angle=180. + angle, color=color)in the last couple versions of matplotlib