Can anyone give me more explanation about the opencv function solvepnp()
?
The opencv documentation says
bool cv::solvePnP (
InputArray objectPoints,
InputArray imagePoints,
InputArray cameraMatrix,
InputArray distCoeffs,
OutputArray rvec,
OutputArray tvec,
bool useExtrinsicGuess = false,
int flags = SOLVEPNP_ITERATIVE)
I'm wondering what the objectPoints
, imagePoints
and cameraMatrix
are. I have once calibrated my camera and have a parameter xml file from it, can i use this?