Using OpenCV v3.1, I detect an ArUco marker, and with
aruco::estimatePoseSingleMarkers(corners, markerLength, camMatrix, distCoeffs, rvecs,tvecs);
I can get the rotation and translation vector for said marker from the marker coordinate system to the camera coordinate system.
However, I need just the xy-coordinates of the marker in the image plane (in pixels). How would I go about this?
I found this somewhat relevant, but that's, again, in regards to the camera coordinate system.