Estimate pose of moving camera relative to a stationary camera, both looking at the same scene

asked 2015-07-17 12:53:08 -0600

saihv gravatar image

Assume I have two independent cameras looking at the same scene (there are features that are visible from both) and that I know the calibration parameters of both the cameras individually (I can also perform stereo calibration at a certain baseline but I don't know if that would be useful). One of the cameras is fixed and stable, the other is noisy in terms of its pose (translation and rotation). As the pose of camera2 keeps changing over time, is it possible to accurately estimate it with respect to the stationary one using image data from both cameras (in opencv)?

I've been doing a little bit of reading, and this is what I've gathered so far:

  1. Find features using SIFT and the point correspondences.
  2. Find the fundamental matrix.
  3. Find essential matrix and perform SVD to obtain the R and t values between the cameras.

Does this approach work on a frame-by-frame basis? And how does the setup help in getting the scale factor? Pointers and suggestions would be very helpful.

Thanks!

edit retag flag offensive close merge delete

Comments

1

May be you can find something here and look for @Eduardo comment

LBerger gravatar imageLBerger ( 2015-07-17 13:00:30 -0600 )edit

Thanks for the mention!

saihv gravatar imagesaihv ( 2015-07-19 01:43:35 -0600 )edit