I have a stereocamera setup where I use the OpenCV method cv::triangulatePoints to detect the checkeboard corners in 3D space. I was wondering what the method is to take these triangulated points and accurately estimate a 3D pose of the checkerboard.
One method I have encountered was found here, feeding the points into a PnP algorithm:
While this is a simple solution to my problem, I am not sure if this is completely correct, as most of my experience with method is for single camera use.
Any insight would be appreciated!