Home | History | Annotate | Download | only in src

Lines Matching refs:points1

176 /* For given points1 (with pntStatus) on image1 finds corresponding points2 on image2 and set pntStatus2 for them */
180 CvMat *points1,
207 points1 == 0 || points2 == 0 ||
229 if( !CV_IS_MAT(points1) || !CV_IS_MAT(points2) ||
243 numPoints = points1->cols;
247 CV_ERROR( CV_StsOutOfRange, "Number of points1 must be > 0" );
255 if( points1->rows != 2 || points2->rows != 2 )
325 cornerPoints1[curr].x = (float)cvmGet(points1,0,i);
326 cornerPoints1[curr].y = (float)cvmGet(points1,1,i);
382 cvmSet(tmpPoints1,0,currPoint,cvmGet(points1,0,i));
383 cvmSet(tmpPoints1,1,currPoint,cvmGet(points1,1,i));