Skip to content

Latest commit

 

History

History
27 lines (17 loc) · 1.99 KB

File metadata and controls

27 lines (17 loc) · 1.99 KB

October 2019

tl;dr: CenterNet like structure to directly regress 26 attributes per object to fit a 3D bbox.

Overall impression

The paper uses a CenterNet architecture to regress bounding boxes. The support region is like the Gaussian kernel at the center of the object. The donut region surrounding the kernel is "don't care" region.

The algorithm requires 3D GT in the first place, and requires accurate intrinsics. (KITTI 3D bbox GT is given in camera coordinate, thus extrinsics does not matter.)

SS3D directly predicts 2D and 3D bboxes, similar to M3D RPN.

This paper also demonstrates the possibility to directly regress the distance of cars from 2D images. See youtube videos. This looks quite similar to Nvidia's drive demo.

Key ideas

  • The 2D and 3D bounding box is parameterized as 26 numbers. --> Similar to M3D RPN which regresses 12 numbers with YOLO-like structure.
  • The 26 numbers are compared with GT, though a L2 norm, weighted by uncertainty.
  • The 26 numbers have different weights, learned through heteroscedastic uncertainty weighting. The weighted least square is minimized to get the best 3D bbox during inference.
  • The 26 numbers can also be trained to fit 3D IoU, but the 26 numbers need to be fitted to a valid 3D bbox online. This requires some complex manipulation of gradient.

Technical details

  • All pixels in the support (central 20% of bbox) is responsible for detecting the bounding box sizes. Thus NMS is needed to find local optimum. The 26 numbers (from 26 channels most likely) associated with the local optimum point is used to predict the 3D box.

Notes

  • Questions and notes on how to improve/revise the current work