• Home
  • Raw
  • Download

Lines Matching refs:distCoeffs

745     Mat cameraMatrix, distCoeffs(1,4,CV_64F,Scalar::all(0));  in calibrate()  local
770 distCoeffs, in calibrate()
779 memcpy( _distortionCoeffs, distCoeffs.ptr(), 4*sizeof(double) ); in calibrate()
805 Mat distCoeffs( 1, 4, CV_64FC1, distortion ); in project() local
811 cameraMatrix, distCoeffs, imagePoints ); in project()
1008 const Mat& distCoeffs,
1032 …jPoints( pointCount, 3), rvec( 1, 3), rmat, tvec( 1, 3 ), cameraMatrix( 3, 3 ), distCoeffs( 1, 4 ), in run() local
1041 distCoeffs << 0.1, 0.01, 0.001, 0.001; in run()
1068 project( objPoints, rvec, tvec, cameraMatrix, distCoeffs, in run()
1086 cdist = 1+distCoeffs(0,0)*r2+distCoeffs(0,1)*r4; in run()
1087 …cast<float>((double)cameraMatrix(0,0)*(x*cdist + (double)distCoeffs(0,2)*a1 + (double)distCoeffs(0… in run()
1089 …tic_cast<float>((double)cameraMatrix(1,1)*(y*cdist + (double)distCoeffs(0,2)*a3 + distCoeffs(0,3)*… in run()
1108 project( objPoints, leftRvec, tvec, cameraMatrix, distCoeffs, in run()
1111 project( objPoints, rightRvec, tvec, cameraMatrix, distCoeffs, in run()
1126 project( objPoints, rvec, leftTvec, cameraMatrix, distCoeffs, in run()
1129 project( objPoints, rvec, rightTvec, cameraMatrix, distCoeffs, in run()
1144 project( objPoints, rvec, tvec, leftCameraMatrix, distCoeffs, in run()
1147 project( objPoints, rvec, tvec, leftCameraMatrix, distCoeffs, in run()
1150 project( objPoints, rvec, tvec, rightCameraMatrix, distCoeffs, in run()
1153 project( objPoints, rvec, tvec, rightCameraMatrix, distCoeffs, in run()
1165 project( objPoints, rvec, tvec, leftCameraMatrix, distCoeffs, in run()
1168 project( objPoints, rvec, tvec, leftCameraMatrix, distCoeffs, in run()
1171 project( objPoints, rvec, tvec, rightCameraMatrix, distCoeffs, in run()
1174 project( objPoints, rvec, tvec, rightCameraMatrix, distCoeffs, in run()
1184 leftImgPoints.resize(distCoeffs.cols); in run()
1185 rightImgPoints.resize(distCoeffs.cols); in run()
1186 for( int i = 0; i < distCoeffs.cols; i++ ) in run()
1188 distCoeffs.copyTo( leftDistCoeffs ); leftDistCoeffs(0,i) -= dEps; in run()
1191 distCoeffs.copyTo( rightDistCoeffs ); rightDistCoeffs(0,i) += dEps; in run()
1217 const Mat& distCoeffs,
1225 … const Mat& cameraMatrix, const Mat& distCoeffs, vector<Point2f>& ipoints, in project() argument
1234 dpddist.create(npoints*2, distCoeffs.rows + distCoeffs.cols - 1, CV_64F); in project()
1236 CvMat _rvec = rvec, _tvec = tvec, _cameraMatrix = cameraMatrix, _distCoeffs = distCoeffs; in project()
1253 const Mat& distCoeffs,
1261 … const Mat& cameraMatrix, const Mat& distCoeffs, vector<Point2f>& imagePoints, in project() argument
1265 projectPoints( objectPoints, rvec, tvec, cameraMatrix, distCoeffs, imagePoints, J, aspectRatio); in project()