Lines Matching defs:points1

62 int icvComputeProjectMatrices6Points(  CvMat* points1,CvMat* points2,CvMat* points3,
67 void GetGeneratorReduceFundSolution(CvMat* points1,CvMat* points2,CvMat* fundReduceCoef1,CvMat* fundReduceCoef2);
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,
190 if( points1 == 0 || points2 == 0 || points3 == 0 ||
196 if( !CV_IS_MAT(points1) || !CV_IS_MAT(points2) || !CV_IS_MAT(points3) ||
202 if( (points1->cols != points2->cols) || (points1->cols != points3->cols) || (points1->cols != 6) /* || (points4D->cols !=6) */)
207 if( points1->rows != 2 || points2->rows != 2 || points3->rows != 2 )
229 points[0] = points1;
391 points1, points2, points3,
788 int icvComputeProjectMatricesNPoints( CvMat* points1,CvMat* points2,CvMat* points3,
813 points[0] = points1;
818 if( points1 == 0 || points2 == 0 || points3 == 0 ||
825 if( !CV_IS_MAT(points1) || !CV_IS_MAT(points2) || !CV_IS_MAT(points3) ||
833 numPoints = points1->cols;
1420 void GetGeneratorReduceFundSolution(CvMat* points1,CvMat* points2,CvMat* fundReduceCoef1,CvMat* fundReduceCoef2)
1428 if( points1 == 0 || points2 == 0 || fundReduceCoef1 == 0 || fundReduceCoef2 == 0)
1433 if( !CV_IS_MAT(points1) || !CV_IS_MAT(points2) || !CV_IS_MAT(fundReduceCoef1) || !CV_IS_MAT(fundReduceCoef2) )
1440 if( points1->rows != 3 || points1->cols != 3 )
1442 CV_ERROR( CV_StsUnmatchedSizes, "Number of points1 must be 3 and and have 3 coordinates" );
1470 x1 = cvmGet(points1,0,i);
1471 y1 = cvmGet(points1,1,i);
1472 w1 = cvmGet(points1,2,i);
1942 void icvComputeTransform4D(CvMat* points1,CvMat* points2,CvMat* transMatr)
1953 if( points1 == 0 || points2 == 0 || transMatr == 0)
1958 if( !CV_IS_MAT(points1) || !CV_IS_MAT(points2) || !CV_IS_MAT(transMatr) )
1963 /* Computes transformation matrix (4x4) for points1 -> points2 */
1968 numPoints = points1->cols;
1986 if( points1->rows != 4 || points2->rows != 4 )
2004 P[0] = cvmGet(points1,0,i);
2005 P[1] = cvmGet(points1,1,i);
2006 P[2] = cvmGet(points1,2,i);
2007 P[3] = cvmGet(points1,3,i);