AprilTag double-applying CameraInfo projection matrix

asked 2021-10-07 06:42:02 -0500

TACD gravatar image

updated 2021-10-07 07:00:50 -0500

I’m trying to use the AprilTag package to detect and localise tags in space using a stereo camera pair, and I’m running into an issue where tags are inaccurately localised due to how AprilTag applies the projection matrix to rectified images.

My workflow looks like this:

raw camera image ➝ stereo_image_proc ➝ rectified camera image ➝ apriltag_ros ➝ relative tag pose

Here’s the problem: stereo_image_proc uses the CameraInfo KDRP matrices to process and rectify the raw images. But the AprilTag module then applies the projection matrix onto the already rectified image to obtain the tag pose, and calculates inaccurate pose information as a result.

To test this, I’ve been publishing a duplicate CameraInfo topic solely for the AprilTag module and editing the matrix values manually. Despite what’s claimed in the wiki, AprilTag doesn’t seem to use the K (camera) matrix at all; there’s no change in tag detection or localisation if I modify these values or even set them all to 0. Conversely, modifying the projection (P) matrix does result in changes to where tags are localised with respect to the robot.

Additionally, if I provide AprilTag with unrectified images the tag localisation is correct for tags directly in front of the camera (but obviously incorrect towards the edges due to distortion).

My question is, what’s the correct way of dealing with this double application of the P matrix, or can I prevent it? I can publish a ‘hacked’ version of the CameraInfo topic to AprilTag that results in correct tag localisation, but this is obviously not a clean solution. Alternately, I could probably generate a projection matrix that results in correct tag localisation after double application, but then the output of stereo_image_proc would be incorrect for all other uses.

How have others resolved this issue?

edit retag flag offensive close merge delete

Comments

Hi @TACD. Really interesting question. Your comment: "Despite what’s claimed in the wiki, AprilTagdoesn’t seem to use the K (camera) matrix". Looking at the [source code] (https://github.com/AprilRobotics/apri...) you can see that they are using OpenCV to do the tag localization, specifically using solvePnP but it could be replaced with other methods. Your solution works and right now you are "limited" to what AprilTag can do. You could use this source code and improve it for your purpose and issue a PR to AprilTag project. Thank you for posting.

osilva gravatar image osilva  ( 2021-10-08 14:23:55 -0500 )edit