LittlePey / SFD

Sparse Fuse Dense: Towards High Quality 3D Detection with Depth Completion (CVPR 2022, Oral)
Apache License 2.0
263 stars 35 forks source link

Equation 3 in the paper #11

Open CBY-9527 opened 2 years ago

RG2806 commented 2 years ago

Equation 3 in the paper shows that the loss includes rpn, iou, aux1, aux2, and depth completion loss. It seems that the depth completion network and the detection network are trained together in an end-to-end manner. However, the provided codes only have the detection network, and directly use the obtained pseudo point clouds and the point clouds to train the detection network. The code is trained in stages, and there seems to be a deviation from Equation 3.

is the interpretation correct of the previous comment?

LittlePey commented 2 years ago

The model can be trained end to end. For convenience, we use the pre-trained depth completion model to generate pseudo clouds.

RG2806 commented 2 years ago

thanks, for the clarification