RoboBEV Benchmark

August 23, 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}))] .

TransFusion

CorruptionNDSmAPmATEmASEmAOEmAVEmAAE
Clean0.68870.64530.29950.25520.32090.27650.1877
Cam Crash0.68430.63680.30030.25690.31600.28080.1874
Frame Lost0.64470.57120.31870.26760.33930.29840.1855
Color Quant0.68190.63110.30050.25750.31510.27580.1873
Motion Blur0.67490.61950.30140.25860.31980.28310.1861
Brightness0.68430.63680.30030.25690.31600.28080.1874
Low Light0.66630.60440.30490.26130.31660.28550.1903
Fog-------
Snow-------

Experiment Log

Camera Crash

SeverityNDSmAPmATEmASEmAOEmAVEmAAE
Easy0.68620.64090.30060.25600.31870.28010.1874
Moderate0.68400.63630.30010.25690.31520.28120.1876
Hard0.68260.63320.30010.25780.31400.28100.1872
Average0.68430.63680.30030.25690.31600.28080.1874

Frame Lost

SeverityNDSmAPmATEmASEmAOEmAVEmAAE
Easy0.65970.59570.31400.26110.33690.28590.1834
Moderate0.63750.55840.32140.26950.33780.30330.1848
Hard0.63680.55950.32070.27210.34310.30590.1883
Average0.64470.57120.31870.26760.33930.29840.1855

Color Quant

SeverityNDSmAPmATEmASEmAOEmAVEmAAE
Easy0.68790.64280.29890.25530.31570.27610.1884
Moderate0.68460.63590.29980.25740.31290.27590.1873
Hard0.67320.61460.30290.25990.31680.27540.1862
Average0.68190.63110.30050.25750.31510.27580.1873

Motion Blur

SeverityNDSmAPmATEmASEmAOEmAVEmAAE
Easy0.68410.63660.30000.25640.32020.27800.1869
Moderate0.67250.61520.30150.25940.31970.28440.1859
Hard0.66790.60680.30260.26000.31950.28680.1856
Average0.67490.61950.30140.25860.31980.28310.1861

Brightness

SeverityNDSmAPmATEmASEmAOEmAVEmAAE
Easy0.68620.64090.30060.25600.31870.28010.1874
Moderate0.68400.63630.30010.25690.31520.28120.1876
Hard0.68260.63320.30010.25780.31400.28100.1872
Average0.68430.63680.30030.25690.31600.28080.1874

Low Light

SeverityNDSmAPmATEmASEmAOEmAVEmAAE
Easy0.67130.61360.30530.26020.31580.28270.1912
Moderate0.66680.60500.30420.26090.31720.28480.1902
Hard0.66100.59460.30520.26270.31670.28900.1896
Average0.66630.60440.30490.26130.31660.28550.1903

References

@inproceedings{bai2022transfusion,
  title={Transfusion: Robust lidar-camera fusion for 3d object detection with transformers},
  author={Bai, Xuyang and Hu, Zeyu and Zhu, Xinge and Huang, Qingqiu and Chen, Yilun and Fu, Hongbo and Tai, Chiew-Lan},
  booktitle={Proceedings of the IEEE/CVF conference on computer vision and pattern recognition},
  pages={1090--1099},
  year={2022}
}