Lines Matching refs:points2
62 int icvComputeProjectMatrices6Points( CvMat* points1,CvMat* points2,CvMat* points3,
67 void GetGeneratorReduceFundSolution(CvMat* points1,CvMat* points2,CvMat* fundReduceCoef1,CvMat* fun…
75 void icvComputeTransform4D(CvMat* points1,CvMat* points2,CvMat* transMatr);
77 int icvComputeProjectMatricesNPoints( CvMat* points1,CvMat* points2,CvMat* points3,
84 int icvComputeProjectMatricesNPoints( CvMat* points1,CvMat* points2,CvMat* points3,
178 int icvComputeProjectMatrices6Points( CvMat* points1,CvMat* points2,CvMat* points3, in icvComputeProjectMatrices6Points() argument
190 if( points1 == 0 || points2 == 0 || points3 == 0 || in icvComputeProjectMatrices6Points()
196 if( !CV_IS_MAT(points1) || !CV_IS_MAT(points2) || !CV_IS_MAT(points3) || in icvComputeProjectMatrices6Points()
202 …if( (points1->cols != points2->cols) || (points1->cols != points3->cols) || (points1->cols != 6) /… in icvComputeProjectMatrices6Points()
207 if( points1->rows != 2 || points2->rows != 2 || points3->rows != 2 ) in icvComputeProjectMatrices6Points()
230 points[1] = points2; in icvComputeProjectMatrices6Points()
391 points1, points2, points3, in icvComputeProjectMatrices6Points()
788 int icvComputeProjectMatricesNPoints( CvMat* points1,CvMat* points2,CvMat* points3, in icvComputeProjectMatricesNPoints() argument
814 points[1] = points2; in icvComputeProjectMatricesNPoints()
818 if( points1 == 0 || points2 == 0 || points3 == 0 || in icvComputeProjectMatricesNPoints()
825 if( !CV_IS_MAT(points1) || !CV_IS_MAT(points2) || !CV_IS_MAT(points3) || in icvComputeProjectMatricesNPoints()
840 if( numPoints != points2->cols || numPoints != points3->cols ) in icvComputeProjectMatricesNPoints()
1420 void GetGeneratorReduceFundSolution(CvMat* points1,CvMat* points2,CvMat* fundReduceCoef1,CvMat* fun… in GetGeneratorReduceFundSolution() argument
1428 if( points1 == 0 || points2 == 0 || fundReduceCoef1 == 0 || fundReduceCoef2 == 0) in GetGeneratorReduceFundSolution()
1433 …if( !CV_IS_MAT(points1) || !CV_IS_MAT(points2) || !CV_IS_MAT(fundReduceCoef1) || !CV_IS_MAT(fundRe… in GetGeneratorReduceFundSolution()
1445 if( points2->rows != 3 || points2->cols != 3 ) in GetGeneratorReduceFundSolution()
1474 x2 = cvmGet(points2,0,i); in GetGeneratorReduceFundSolution()
1475 y2 = cvmGet(points2,1,i); in GetGeneratorReduceFundSolution()
1476 w2 = cvmGet(points2,2,i); in GetGeneratorReduceFundSolution()
1942 void icvComputeTransform4D(CvMat* points1,CvMat* points2,CvMat* transMatr) in icvComputeTransform4D() argument
1953 if( points1 == 0 || points2 == 0 || transMatr == 0) in icvComputeTransform4D()
1958 if( !CV_IS_MAT(points1) || !CV_IS_MAT(points2) || !CV_IS_MAT(transMatr) ) in icvComputeTransform4D()
1976 if( numPoints != points2->cols ) in icvComputeTransform4D()
1986 if( points1->rows != 4 || points2->rows != 4 ) in icvComputeTransform4D()
2009 X1 = cvmGet(points2,0,i); in icvComputeTransform4D()
2010 Y1 = cvmGet(points2,1,i); in icvComputeTransform4D()
2011 Z1 = cvmGet(points2,2,i); in icvComputeTransform4D()
2012 W1 = cvmGet(points2,3,i); in icvComputeTransform4D()