Home | History | Annotate | Download | only in src

Lines Matching full:points2

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 )
230 points[1] = points2;
391 points1, points2, points3,
788 int icvComputeProjectMatricesNPoints( CvMat* points1,CvMat* points2,CvMat* points3,
814 points[1] = points2;
818 if( points1 == 0 || points2 == 0 || points3 == 0 ||
825 if( !CV_IS_MAT(points1) || !CV_IS_MAT(points2) || !CV_IS_MAT(points3) ||
840 if( numPoints != points2->cols || numPoints != points3->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) )
1445 if( points2->rows != 3 || points2->cols != 3 )
1447 CV_ERROR( CV_StsUnmatchedSizes, "Number of points2 must be 3 and and have 3 coordinates" );
1474 x2 = cvmGet(points2,0,i);
1475 y2 = cvmGet(points2,1,i);
1476 w2 = cvmGet(points2,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 */
1976 if( numPoints != points2->cols )
1986 if( points1->rows != 4 || points2->rows != 4 )
2009 X1 = cvmGet(points2,0,i);
2010 Y1 = cvmGet(points2,1,i);
2011 Z1 = cvmGet(points2,2,i);
2012 W1 = cvmGet(points2,3,i);