RoboBEV Benchmark

April 6, 2023 · View on GitHub

RoboBEV Benchmark

The official nuScenes metrics are considered in our benchmark:

Average Precision (AP)

The average precision (AP) defines a match by thresholding the 2D center distance d on the ground plane instead of the intersection over union (IoU). This is done in order to decouple detection from object size and orientation but also because objects with small footprints, like pedestrians and bikes, if detected with a small translation error, give $0IoU.WethencalculateAPasthenormalizedareaundertheprecisionrecallcurveforrecallandprecisionover10 IoU. We then calculate AP as the normalized area under the precision-recall curve for recall and precision over 10%. Operating points where recall or precision is less than \10% are removed in order to minimize the impact of noise commonly seen in low precision and recall regions. If no operating point in this region is achieved, the AP for that class is set to zero. We then average over-matching thresholds of \mathbb{D}={0.5, 1, 2, 4}metersandthesetofclassesmeters and the set of classes\mathbb{C}$ :

mAP= 1CDcCdDAPc,d.\text{mAP}= \frac{1}{|\mathbb{C}||\mathbb{D}|}\sum_{c\in\mathbb{C}}\sum_{d\in\mathbb{D}}\text{AP}_{c,d} .

True Positive (TP)

All TP metrics are calculated using d=2d=2 m center distance during matching, and they are all designed to be positive scalars. Matching and scoring happen independently per class and each metric is the average of the cumulative mean at each achieved recall level above $10%. If a \10% recall is not achieved for a particular class, all TP errors for that class are set to \1$.

  • Average Translation Error (ATE) is the Euclidean center distance in 2D (units in meters).
  • Average Scale Error (ASE) is the 3D intersection-over-union (IoU) after aligning orientation and translation ($1$ − IoU).
  • Average Orientation Error (AOE) is the smallest yaw angle difference between prediction and ground truth (radians). All angles are measured on a full $360-degree period except for barriers where they are measured on a \180$-degree period.
  • Average Velocity Error (AVE) is the absolute velocity error as the L2 norm of the velocity differences in 2D (m/s).
  • Average Attribute Error (AAE) is defined as $1 minus attribute classification accuracy (\1$ − acc).

nuScenes Detection Score (NDS)

mAP with a threshold on IoU is perhaps the most popular metric for object detection. However, this metric can not capture all aspects of the nuScenes detection tasks, like velocity and attribute estimation. Further, it couples location, size, and orientation estimates. nuScenes proposed instead consolidating the different error types into a scalar score:

NDS = 110 [5mAP+mTPTP (1min(1, mTP))].\text{NDS} = \frac{1}{10} [5\text{mAP}+\sum_{\text{mTP}\in\mathbb{TP}} (1-\min(1, \text{mTP}))] .

BEVFusion Camera + LiDAR

CorruptionNDSmAPmATEmASEmAOEmAVEmAAE
Clean0.71380.68520.28740.25390.30440.25540.1874
Cam Crash0.69630.65250.29160.25650.30690.26030.1847
Frame Lost0.69310.64780.29270.25730.31120.26280.1840
Color Quant0.70440.66650.28860.25530.29800.25690.1891
Motion Blur0.69770.65570.28850.25600.31160.25980.1853
Brightness0.70180.66220.29260.25660.29960.25930.1852
Low Light0.67870.62100.29390.26000.29980.27390.1898
Fog-------
Snow-------

Experiment Log

Time: Thu Apr 6 11:46:46 2023

Camera Crash

SeverityNDSmAPmATEmASEmAOEmAVEmAAE
Easy0.70440.66670.28830.25600.30400.25700.1841
Moderate0.69460.65110.29450.25670.30820.26440.1855
Hard0.68980.63980.29200.25690.30860.25940.1846
Average0.69630.65250.29160.25650.30690.26030.1847

Frame Lost

SeverityNDSmAPmATEmASEmAOEmAVEmAAE
Easy0.70270.66430.29040.25570.30490.25800.1852
Moderate0.69030.64380.29460.25750.31410.26590.1835
Hard0.68620.63540.29320.25870.31460.26460.1832
Average0.69310.64780.29270.25730.31120.26280.1840

Color Quant

SeverityNDSmAPmATEmASEmAOEmAVEmAAE
Easy0.71220.68180.28760.25440.30000.25570.1889
Moderate0.70760.67140.28890.25560.29250.25600.1880
Hard0.69340.64610.28940.25580.30160.25910.1904
Average0.70440.66650.28860.25530.29800.25690.1891

Motion Blur

SeverityNDSmAPmATEmASEmAOEmAVEmAAE
Easy0.70910.67650.28670.25450.31170.25440.1840
Moderate0.69520.65000.28810.25630.30830.25940.1858
Hard0.68890.64060.29060.25720.31480.26550.1860
Average0.69770.65570.28850.25600.31160.25980.1853

Brightness

SeverityNDSmAPmATEmASEmAOEmAVEmAAE
Easy0.70820.67600.29180.25560.30400.25930.1869
Moderate0.70000.65850.29320.25670.29890.25960.1840
Hard0.69710.65210.29270.25760.29580.25900.1846
Average0.70180.66220.29260.25660.29960.25930.1852

Low Light

SeverityNDSmAPmATEmASEmAOEmAVEmAAE
Easy0.68750.63600.29230.25890.29890.26470.1897
Moderate0.68050.62320.29250.25940.29720.27150.1897
Hard0.66820.60380.29700.26170.30330.28550.1900
Average0.67870.62100.29390.26000.29980.27390.1898

References

@inproceedings{liu2022bevfusion,
  title={BEVFusion: Multi-Task Multi-Sensor Fusion with Unified Bird's-Eye View Representation},
  author={Liu, Zhijian and Tang, Haotian and Amini, Alexander and Yang, Xingyu and Mao, Huizi and Rus, Daniela and Han, Song},
  booktitle={IEEE International Conference on Robotics and Automation (ICRA)},
  year={2023}
}