Home | History | Annotate | Download | only in camera_calibration

Lines Matching refs:tvecs

408                                          const vector<Mat>& rvecs, const vector<Mat>& tvecs,
419 projectPoints(objectPoints[i], rvecs[i], tvecs[i], cameraMatrix, distCoeffs, imagePoints2);
457 vector<vector<Point2f> > imagePoints, vector<Mat>& rvecs, vector<Mat>& tvecs,
474 distCoeffs, rvecs, tvecs, s.flag|CALIB_FIX_K4|CALIB_FIX_K5);
481 rvecs, tvecs, cameraMatrix, distCoeffs, reprojErrs);
488 const vector<Mat>& rvecs, const vector<Mat>& tvecs,
532 if(s.writeExtrinsics && !rvecs.empty() && !tvecs.empty() )
534 CV_Assert(rvecs[0].type() == tvecs[0].type());
542 CV_Assert(tvecs[i].rows == 3 && tvecs[i].cols == 1);
545 t = tvecs[i].t();
568 vector<Mat> rvecs, tvecs;
572 bool ok = runCalibration(s, imageSize, cameraMatrix, distCoeffs, imagePoints, rvecs, tvecs, reprojErrs,
578 saveCameraParams(s, imageSize, cameraMatrix, distCoeffs, rvecs, tvecs, reprojErrs, imagePoints,