Lines Matching refs:fundReduceCoef1
67 void GetGeneratorReduceFundSolution(CvMat* points1,CvMat* points2,CvMat* fundReduceCoef1,CvMat* fun…
69 int GetGoodReduceFundamMatrFromTwo(CvMat* fundReduceCoef1,CvMat* fundReduceCoef2,CvMat* resFundRedu…
303 CvMat fundReduceCoef1; in icvComputeProjectMatrices6Points() local
308 fundReduceCoef1 = cvMat(1,5,CV_64F,fundReduceCoef1_dat); in icvComputeProjectMatrices6Points()
311 GetGeneratorReduceFundSolution(&corrPoints1, &corrPoints2, &fundReduceCoef1, &fundReduceCoef2); in icvComputeProjectMatrices6Points()
319 numSol = GetGoodReduceFundamMatrFromTwo(&fundReduceCoef1, &fundReduceCoef2,&resFundReduceCoef); in icvComputeProjectMatrices6Points()
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()
1450 if( fundReduceCoef1->rows != 1 || fundReduceCoef1->cols != 5 ) in GetGeneratorReduceFundSolution()
1506 cvmSet(fundReduceCoef1,0,i,cvmGet(&matrV,3,i)); in GetGeneratorReduceFundSolution()
1517 int GetGoodReduceFundamMatrFromTwo(CvMat* fundReduceCoef1,CvMat* fundReduceCoef2,CvMat* resFundRedu… in GetGoodReduceFundamMatrFromTwo() argument
1524 if( fundReduceCoef1 == 0 || fundReduceCoef2 == 0 || resFundReduceCoef == 0 ) in GetGoodReduceFundamMatrFromTwo()
1529 … if( !CV_IS_MAT(fundReduceCoef1) || !CV_IS_MAT(fundReduceCoef2) || !CV_IS_MAT(resFundReduceCoef) ) in GetGoodReduceFundamMatrFromTwo()
1539 if( fundReduceCoef1->rows != 1 || fundReduceCoef1->cols != 5 ) in GetGoodReduceFundamMatrFromTwo()
1556 p1 = cvmGet(fundReduceCoef1,0,0); in GetGoodReduceFundamMatrFromTwo()
1557 q1 = cvmGet(fundReduceCoef1,0,1); in GetGoodReduceFundamMatrFromTwo()
1558 r1 = cvmGet(fundReduceCoef1,0,2); in GetGoodReduceFundamMatrFromTwo()
1559 s1 = cvmGet(fundReduceCoef1,0,3); in GetGoodReduceFundamMatrFromTwo()
1560 t1 = cvmGet(fundReduceCoef1,0,4); in GetGoodReduceFundamMatrFromTwo()
1596 alpha * cvmGet(fundReduceCoef1,0,j) + (1-alpha) * cvmGet(fundReduceCoef2,0,j) ); in GetGoodReduceFundamMatrFromTwo()