Skip to content

Latest commit

 

History

History
36 lines (23 loc) · 2.58 KB

m3d_rpn.md

File metadata and controls

36 lines (23 loc) · 2.58 KB

October 2019

tl;dr: Regress 2D and 3D bbox parameters simultaneously by precomputing 3D mean stats for each 2D anchor.

Overall impression

M3D RPN directly regresses 2D and 3D bboxes (11 + num_class), similar to SS3D which directly regresses 26 numbers, and D4LCN which directly regresses 39 numbers.

The algorithm requires 3D GT in the first place, and requires accurate intrinsics. For dataset without intrinsics, it may be necessary to predict intrinsics as a weakly supervised problem.

The paper focuses on a single-stage 2D and 3D regression task, and yields less accurate results particularly for yaw (postprocessing leads to 5% accuracy increase). This is evidenced by the post-processing yaw adjustment stage. It takes additional 18 ms, too slow for real time application.

The paper is correct that many previous SOTA algorithm uses pretrained component and they sometimes introduce constant noise in training.

It can do mono3D for cyclists and pedestrians.

The depth aware convolution network is extended further in learning depth guided conv.

This work forms the baseline for kinematic mono3D which performs monocular video 3D object detection.

This work also directly inspired D4LCN, which brings the idea of depth aware convolution one step further, and uses the 2D/3D anchor idea.

Key ideas

  • To ease the 3D bbox regression task, the mean stats of depth and 3D size, and theta are precomputed for each anchor size. --> This is clever, but may not be the best way to do this as the theta is quite inaccurate and calls for post-processing as shown by the paper.
    • Whenever the IoU for 2D is > 0.5, then adjust 3D anchors to regress the diff from the GT.
  • Depth aware convolution: The depth is largely correlated with rows in autonomous driving scenes. Thus M3D RPN proposes to use separate conv filters for different row bins.
  • Post 3D-->2D optimization: Postprocessing of yaw angle by optmizing 2D-3D consistency (hill-climb algorithm).

Technical details

  • The depth aware conv leads to depth-aware features or local features and are fused with normal conv (global features) by a learned paramter.
  • For each of the 12 regression target, a learned parameter + sigmoid is used to dynamically weigh the global features and local features.

Notes