I am working with OpenCV, Android and OpenGL for an Augmented Reality project. As far as I know the coordintate system in OpenGL is

enter image description here

The OpenCV coordinate system is:

enter image description here

When combining these devices with android sensors how can I do the coordinate system conversions and [R|t] matrix conversion? Is there a good tutorial or documentation were all of this conffusing stuff is explained?

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

If you look at the picture, then you see, that the both coordinate systems have the same handednes, but the OpenCV one is rotated by pi around the x axis. This can be represented by the following rotation matrix:

 1  0  0
 0 -1  0
 0  0 -1
link|improve this answer
Yes, for changing between openCV and OpenGL an inversion about y and z axis is needed. The biggest problem comes with android sensors... – Jav_Rock Jan 31 at 15:59
feedback

Your Answer

 
or
required, but never shown

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