1
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 3 years have passed since last update.

【3D OD LiDAR編】VoxelNet : End-to-Endの3D Object Detection

Last updated at Posted at 2020-10-03

image.png

上の図のように3つのModuleからなる

  1. Feature Learning Network => Voxelの特徴を取り出し、3D Feature Mapを作る
  2. Convolutional Middle Layers => 3D Feature Mapを2D Feature Mapに落とし込む
  3. Region Proposal Network => 2D Feature Mapから3D物体検出

ちなみにend-to-endらしい
詳細を見ていこう!

新規性

Feature Learning Network

1. Voxel Partition => 3次元空間を等間隔でVoxelに区切る 2. Grouping => Voxelの中の点群をグループとする 3. Random Sampling => 全部はいらんから任意の数のPointをランダムで選ぶ 4. Stacked Voxel Feature Encoding => Voxelの特徴量をVoxelの中の点群から抽出する

Random Samplingのメリット

1. 計算コストを抑えられる。 2. voxel間のpoint数の不均衡を減らせる。

Stacked Voxel Feature Encodingの処理概要

![image.png](https://qiita-image-store.s3.ap-northeast-1.amazonaws.com/0/482094/cf6233d8-dd9c-92a8-d09b-92658a62b008.png) 点は3次元位置と反射強度の情報を持っている。

image.png
さらにCentroid(voxelの内のpointの平均)からの距離の情報3つを加える。
この7つの特徴量をPoint-wise inputとする。

image.png

Fully Connected Layerで特徴量を抽出。
Channel毎の最大値を結合する。(Voxel内の点群の一番強い特徴が残る)

image.png

単純にVFEをn回繰り返えす。
最後にFully Connected layerとElement-Wise MaxPoolをしてVoxelの特徴量を得る。

image.png
すべてのVoxelに同じ処理をするとVoxelのFeature Map(Channel,Depth,Height,Width)が得られる。

意外とシンプル!

Convolutional Middle Layers

3D CNNを用いて2Dに落とし込む。高さの情報をChannelに入れ込む感じ。

Region Proposal Network

2Dの物体検出でおなじみのRPN。 入力は2DのBEV(Bird Eye View)だから、好きな2DのObject Detectorを適当に選んでつければ完成!

結果

![image.png](https://qiita-image-store.s3.ap-northeast-1.amazonaws.com/0/482094/ebbe9795-ed65-bf95-08de-2f85ea833885.png) 前のモデルよりかなり精度が上がっている

結論

・End-To-Endでシンプルなモデル。これは3D Objecet Detectionのbaselineとして活用されそう。

参考文献

VoxelNet: End-to-End Learning for Point Cloud Based 3D Object Detection https://openaccess.thecvf.com/content_cvpr_2018/CameraReady/3333.pdf
1
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
1
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?