Home | History | Annotate | Download | only in src

Lines Matching defs:points2

176 /* For given points1 (with pntStatus) on image1 finds corresponding points2 on image2 and set pntStatus2 for them */
182 CvMat *points2,
207 points1 == 0 || points2 == 0 ||
229 if( !CV_IS_MAT(points1) || !CV_IS_MAT(points2) ||
250 if( points2->cols != numPoints || pntStatus1->cols != numPoints || pntStatus2->cols != numPoints )
255 if( points1->rows != 2 || points2->rows != 2 )
355 cvmSet(points2,0,i,cornerPoints2[currVis].x);
356 cvmSet(points2,1,i,cornerPoints2[currVis].y);
385 cvmSet(tmpPoints2,0,currPoint,cvmGet(points2,0,i));
386 cvmSet(tmpPoints2,1,currPoint,cvmGet(points2,1,i));
403 /* Set final status for points2 */
759 void icvComputeProjectMatrixStatus(CvMat *objPoints4D,CvMat *points2,CvMat *status, CvMat *projMatr)
792 x = cvmGet(points2,0,i);
793 y = cvmGet(points2,1,i);
801 cvmSet(points2D,0,currVis,cvmGet(points2,0,i));
802 cvmSet(points2D,1,currVis,cvmGet(points2,1,i));
849 CvMat *points2 = 0;
865 points2 = cvCreateMat(2,numPoints,CV_64F);
874 points2,
880 cvCopy(points2,newPoints);
888 // icvComputeProjectMatrix(objPoints4D,points2,&projMatr);
889 icvComputeProjectMatrixStatus(objPoints4D,points2,status,&projMatr);