Calculating homography of multiple markers on a single plane

asked 2015-07-14 14:27:10 -0600

eAi gravatar image

updated 2015-07-15 03:21:50 -0600

I've got an algorithm that calculates the homography of a number of markers in a single image, using OpenCV's findHomography. This works fine, but due to the size of the markers/resolution of the images, the rotation calculated is often quite inaccurate (mainly around the x and z axes of the marker, assuming y is up). I'd love to find a way to improve this.

I have a hypothesis that the fact that I know all the markers are on the same plane (they're on a table) should help improve the homography - I then just need to work out the rotation of the marker around a single axis - but I don't know enough to put this in to practice. Can anyone give me any guidance on this?

edit retag flag offensive close merge delete

Comments

Do you know the relative position of the markers on the table?

FooBar gravatar imageFooBar ( 2015-07-15 03:58:00 -0600 )edit

Before the call to findHomography, I have the points that make up the shape that I'm detecting in screen space.

eAi gravatar imageeAi ( 2015-07-15 04:06:24 -0600 )edit