Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to position an object in 3D space using cameras [closed]

Tags:

opencv

arduino

Is it possible to use a couple of webcams (or any camera for that matter) to get the x, y and z co-ordinates of an object and then track them perhaps using OpenCV as it moves around a room.

I'm thinking of it in relation to localising and then controling an RC helicopter.

like image 318
timgeaney Avatar asked Sep 16 '12 21:09

timgeaney


1 Answers

Yes. You need to detect points on both images simultaneously and then match the pairs that correspond to the same point in the scene. This way you will have the same point represented by different coordinate spaces (camera 1 and camera 2).

You can start here.

like image 155
Jav_Rock Avatar answered Dec 02 '22 15:12

Jav_Rock