Home | History | Annotate | Download | only in test

Lines Matching refs:imagePoints

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