Lines Matching refs:imagePoints

260         CvSize imageSize, CvPoint2D64f* imagePoints, CvPoint3D64f* objectPoints,
265 double* cameraMatrix, double* distortion, CvPoint2D64f* imagePoints ) = 0;
300 CvPoint2D64f* imagePoints; in run() local
328 imagePoints = 0; in run()
406 imagePoints = (CvPoint2D64f*)cvAlloc( numPoints * in run()
458 (imagePoints+i)->x = x; in run()
459 (imagePoints+i)->y = y; in run()
523 imagePoints, in run()
560 dx = rx - imagePoints[i].x; in run()
561 dy = ry - imagePoints[i].y; in run()
632 cvFree(&imagePoints); in run()
655 cvFree(&imagePoints); in run()
677 CvSize imageSize, CvPoint2D64f* imagePoints, CvPoint3D64f* objectPoints,
682 double* cameraMatrix, double* distortion, CvPoint2D64f* imagePoints );
686 CvSize imageSize, CvPoint2D64f* imagePoints, CvPoint3D64f* objectPoints, in calibrate() argument
695 CvMat _imagePoints = cvMat(1, total, CV_64FC2, imagePoints); in calibrate()
709 double* cameraMatrix, double* distortion, CvPoint2D64f* imagePoints ) in project() argument
712 CvMat _imagePoints = cvMat(1, pointCount, CV_64FC2, imagePoints); in project()
729 CvSize imageSize, CvPoint2D64f* imagePoints, CvPoint3D64f* objectPoints,
734 double* cameraMatrix, double* distortion, CvPoint2D64f* imagePoints );
743 vector<vector<Point2f> > imagePoints( imageCount ); in calibrate() local
751 vector<vector<Point2f> >::iterator imagePointsIt = imagePoints.begin(); in calibrate()
767 imagePoints, in calibrate()
806 vector<Point2f> imagePoints; in project() local
811 cameraMatrix, distCoeffs, imagePoints ); in project()
812 vector<Point2f>::const_iterator it = imagePoints.begin(); in project()
813 for( int i = 0; it != imagePoints.end(); ++it, i++ ) in project()
1009 vector<Point2f>& imagePoints,
1218 vector<Point2f>& imagePoints,
1254 vector<Point2f>& imagePoints,
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()