Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

let's say that all we have are corresponding image points in two views. From these points, I can compute a homography/essential matrix, however extracting the angle of rotation of the camera is not understood.

share|improve this question
1  
Did you already have a look here? stackoverflow.com/questions/4485774/rotation-matrix-opencv – Dobi Dec 21 '12 at 14:02
1  
that will get you rotation around z, is that all you need? Getting rotation around x and y from just a homography is harder than you might expect – Hammer Dec 21 '12 at 15:13
@Hammer you're right, the rotation matrix being calculated in that question is for 2D (essentially the rotation of an image). I'm looking for the rotation of the camera. – honeywind Dec 21 '12 at 19:17

1 Answer

I'm not sure if I have misunderstood your question but if you are looking are looking for the rotation matrix between two camera coordinate systems and have computed the essential matrix then the rotation matrix can be calculated by taking an SVD of the essential matrix and doing some simple matrix multiplication.

The algorithm is listed here.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.