RoboBEV Benchmark

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

AutoAlignV2

CorruptionNDSmAPmATEmASEmAOEmAVEmAAE
Clean0.61390.56490.33000.26990.42260.46440.1983
Cam Crash0.58490.51370.33930.27100.43290.47860.1977
Frame Lost0.58320.51040.33960.27180.43150.47870.1984
Color Quant0.60060.54050.33470.27030.42540.47080.1950
Motion Blur0.59010.51880.33360.27080.42430.47150.1923
Brightness0.60760.54970.33100.26990.42310.45600.1922
Low Light0.57700.49490.33900.27170.41570.47850.2000
Fog-------
Snow-------

Experiment Log

Camera Crash

SeverityNDSmAPmATEmASEmAOEmAVEmAAE
Easy0.58790.52000.33820.27020.43920.47450.1983
Moderate0.58520.51440.34080.27100.43330.47780.1973
Hard0.58160.50680.33900.27180.42620.48350.1976
Average0.58490.51370.33930.27100.43290.47860.1977

Frame Lost

SeverityNDSmAPmATEmASEmAOEmAVEmAAE
Easy0.59650.53410.33530.27070.42640.47450.1984
Moderate0.58030.50460.34080.27240.42940.48040.1969
Hard0.57280.49260.34260.27240.43870.48110.2000
Average0.58320.51040.33960.27180.43150.47870.1984

Color Quant

SeverityNDSmAPmATEmASEmAOEmAVEmAAE
Easy0.60870.55690.33170.26990.42830.46990.1984
Moderate0.60400.54540.33360.26960.42250.46710.1940
Hard0.58920.51920.33890.27150.42550.47540.1926
Average0.60060.54050.33470.27030.42540.47080.1950

Motion Blur

SeverityNDSmAPmATEmASEmAOEmAVEmAAE
Easy0.60410.54460.33000.26980.42290.46670.1931
Moderate0.58670.51140.33470.27110.42190.46930.1926
Hard0.57960.50030.33620.27160.42810.47840.1911
Average0.59010.51880.33360.27080.42430.47150.1923

Brightness

SeverityNDSmAPmATEmASEmAOEmAVEmAAE
Easy0.61120.55690.33100.27000.42040.45870.1923
Moderate0.60730.54930.33100.26990.42440.45560.1926
Hard0.60430.54270.33090.26970.42450.45380.1916
Average0.60760.54970.33100.26990.42310.45600.1922

Low Light

SeverityNDSmAPmATEmASEmAOEmAVEmAAE
Easy0.59040.51930.33440.27070.41470.47440.1983
Moderate0.57920.49830.33750.27140.41450.47560.2001
Hard0.56120.46710.34520.27310.41780.48540.2015
Average0.57700.49490.33900.27170.41570.47850.2000

References

@article{chen2022autoalignv2,
  title={AutoAlignV2: Deformable Feature Aggregation for Dynamic Multi-Modal 3D Object Detection},
  author={Chen, Zehui and Li, Zhenyu and Zhang, Shiquan and Fang, Liangji and Jiang, Qinhong and Zhao, Feng},
  journal={ECCV},
  year={2022}
}