0
0

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 Stereo】Object-Centric Stereo : Stereo Depthで3D Object Detection!!

Posted at

Object-Centric Stereo Matching for 3D Object Detection

![image.png](https://qiita-image-store.s3.ap-northeast-1.amazonaws.com/0/482094/b669bca1-2242-0c7e-1813-f70391ee7b90.png)

事前知識としてInstance Segmentation, Stereo Depth Estimation, 3D Object Detection(LiDAR系で使われている奴)を理解しておくと、ただ3つのModuleの組み合わせなので簡単に理解出来ると思います。

新規性

パイプライン

水色の矢印がInstance Segmentationを表していて。 紫色の矢印がStereo Depthを表しています。 Depth Estimationの3次元情報をInstance Segmentationで得たエリアのpixelをcropのみくり抜くことでInstance Disparity Mapを作ります。 最後にお好きな3D Object Detectorを使えば3D Bounding Boxが推定出来ます

Object-Centric Stereo stereo matching

普通のPSMNetなどのstreo matchingは計算が遅いので、画像全体ではなく、2D DetectionされたエリアのみにStereo Matchingをすれば早くなるだろうというアイデア。

SSIM(Structure Of Similarity)で左と右の画像で対応するBoundingBoxを見つけるそうです。

結論

・Instance Segmentation, Stereo Depth Estimation, 3D Object Detectionを組み合わせる事でStereo Cameraのみで3次元の物体の位置を推定する事が出来ました。

・Object-Centric Stereo stereo matchingは正直2D Detectorを右と左で2回行うか、Stereo Matchingを画像全体に行うかどちらかを選ぶかなんですが、使ってる2D DetectorとStereo Matchingの計算の速さによってどっちのシステムが良いか決まります。僕はSSIMで物体をAssociationするというアイデアが面白いと思うのですが、混雑している道路や人が横に並んでいたらAssociationが失敗する可能性が高いのではと思ってしまいました。だったら早いStereo Matchingをしたほうがシンプルで良いと思います。

参考文献

Object-Centric Stereo Matching for 3D Object Detection https://arxiv.org/pdf/1909.07566.pdf
0
0
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
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?