0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

【3D Object Detection】EA-LSS

Last updated at Posted at 2023-10-20

概要

BEVでのLiDARとCameraのFusionではCameraのDepthが不正確でLiDAR単体に対してPefromanceがそこまで上がらないという課題があった。そこでEA-LSSモジュールを追加し、カメラでの距離推定を向上させ、最終的な3次元物体認識の精度を上げる。
image.png

EADF Module

  1. LiDARの点群をCameraにProjectionする
  2. kxkのカーネルを使ってMaxPoolingする
  3. ←↑↓→の四方向のEdgeを検出するためSobel Filterを使用する
  4. 得たEdge Mapを0~1にNormalizationする

image.png

FGD Module

  1. CameraとLiDARの情報をFusionしたFeature Mapから、Transposed Convolutionを使って解像度をあげながら、Depthを推定する
    image.png

EA-LSS

  1. LiDARから得たDepth MapとEdge MapをCameraのFeature MapにConcatする
  2. Context Featureと推定したDepth distributionを使ってFrustum Featureを得る
  3. LiDARから得たDepth MapをGround Truthとして、推定したDepth MapのLossを計算する(FGD LossとDADF Loss)
    image.png
0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?