Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 1.61 KB

rrpn_radar.md

File metadata and controls

28 lines (20 loc) · 1.61 KB

January 2020

tl;dr: Use radar for region proposal in a two-stage object detector.

Overall impression

This study proposed translated anchors to address the misalignment of radar data.

One problem with radar data is the uncertain physical extent of radar pins. This include the lack of elevation z information, and the large uncertainty in azimuth direction.

However the method compared RRPN with Fast RCNN (even in 2019!). Selective Search may not be a fair comparison. The improvement of performance over Fast RCNN is not huge, and I suspect the performance may be lower than Faster RCNN.

Key ideas

  • Radar detection s are not mapped to the center of the detected objects in every image. Therefore RRPN has differently translated anchors. Below is one example.
  • Size of anchors are determined by $$S_i = \alpha \frac{1}{d_i} + \beta$$
    • the size of anchor is inversely proportional to the distance of the radar pin

Technical details

  • Where do the Z info in the radar pins come from in Nuscenes?

Notes

  • code
  • All interesting objects are collected by radar pins in Nuscenes. Is this true on other datasets as well?