2
votes

I have used this code as a basis to detect my rectangular target in a scene.I use ORB and Flann Matcher.I have been able to draw the bounding box of the detected target in my scene successfully using the findHomography() and perspectiveTransform() functions.
The reference image (img_object in the above code) is a straight view of only the rectangular target.Now the target in my scene image may be tilted forwards or backwards.I want to find out the angle by which it has been tilted.I have read various posts and came to the conclusion that the homography returned by findHomography() can be decomposed to the rotation matrix and translation vector. I have used code from https:/gist.github.com/inspirit/740979 recommended by this link translated to C++.This is the Zhang SVD decomposition code got from the camera calibration module of OpenCV.I got the complete explanation of this decomposition code from O'Reilly's Learning OpenCV book.
I also used solvePnP() on the the keypoints returned by the matcher to cross check the rotation matrix and the translation vector returned from the homography decomposition but they do not seem to the same.
I have already the measurements of the tilts of all my scene images.i found 2 ways to retrieve the angles from the rotation matrix to check how well they match my values.

  • Given a 3×3 rotation matrix

    R =
    [ r_{11} & r_{12} & r_{13} ]
    [ r_{21} & r_{22} & r_{23} ]
    [ r_{31} & r_{32} & r_{33} ]

    The 3 Euler angles are

    theta_{x} = atan2(r_{32}, r_{33})

    theta_{y} = atan2(-r_{31}, sqrt{r_{32}^2 + r_{33}^2})

    theta_{z} = atan2(r_{21}, r_{11})


  • The axis,angle representation - Being R a general rotation matrix, its corresponding rotation axis u and rotation angle θ can be retrieved from:
    cos(θ) = ( trace(R) − 1) / 2
    [u]× = (R − R⊤) / 2 sin(θ)


I calculated the angles using both the methods for the rotation matrices obtained from the homography decomposition and the solvepnp().All the angles are different and give very unexpected values.
Is there a hole in my understanding?I do not understand where my calculations are wrong.Are there any alternatives i can use?

1

1 Answers

3
votes

Why do you expect them to be the same? They are not the same thing at all.

The Euler angles are three angles of rotation about one axis at a time, starting from the world frame.

Rodriguez's formula gives components of one vector in the world frame, and an angle of rotation about that vector.