Well, given a sequence of 2d image points for N images and a single set of 3d object points, calibration can be done for a single camera using
double calibrateCamera(InputArrayOfArrays objectPoints, InputArrayOfArrays
imagePoints, Size imageSize, InputOutputArray cameraMatrix,
InputOutputArray distCoeffs, OutputArrayOfArrays rvecs,
OutputArrayOfArrays tvecs, int flags=0,
TermCriteria criteria=TermCriteria( TermCriteria::COUNT+TermCriteria::EPS, 30, DBL_EPSILON) )
Well, this function returns 3x3 Camera Matrix(Intrinsic parameters like focal length, principal points) and various extrinsic parameters like distortion coefficients and rotation vector,etc.
If i wish to estimate Errors for all intrinsic and extrinsic parameters obtained using the above function, what should be the procedure? Basicalluy, what is the way to obtain Calibration Errors in opencv. Any help would be appreciated.