Matthias Preu
Matthias Preu

Reputation: 803

Scene reconstruction under rotation and little camera movement

I'm trying to implement some kind of object detection with depth measurement using a mono-camera which is mounted near by the center of rotation of a door. The basic idea is to detect objects in front of the door (when swinging up) and create a collision warning if the door cannot open completely.

There are some problems I have to deal with:

What I tried:

I would appreciate if someone has some ideas what I can try here. Maybe Optical Flow is suitable here?

I'm also interested in some sort of (mathematical) proof when a solution is not really possible. Is there a minimum amount of movement needed to get good reconstruction results with algorithms like SfM? Is translation better than rotation for SfM?

Upvotes: 0

Views: 543

Answers (1)

Photon
Photon

Reputation: 3222

I believe you're already on to why this is very hard. Rotation only reconstruction is not possible without additional scene dependent hints / clues.

You may want to take a look at the following paper, which uses indoor environment assumptions to do 3D reconstruction from a single image:

E. Delage, Honglak Lee, and A.Y. Ng. A dynamic bayesian network model
for autonomous 3d reconstruction from a single indoor image. In Computer
Vision and Pattern Recognition, 2006 IEEE Computer Society Conference
on, volume 2, pages 2418?2428, 2006.

Probably the best solution would be to change the mounting of the camera so that the hinge rotation would apply a translation as well.

Upvotes: 1

Related Questions