Lines Matching refs:fundReduceCoef2

67 …torReduceFundSolution(CvMat* points1,CvMat* points2,CvMat* fundReduceCoef1,CvMat* fundReduceCoef2);
69 int GetGoodReduceFundamMatrFromTwo(CvMat* fundReduceCoef1,CvMat* fundReduceCoef2,CvMat* resFundRedu…
304 CvMat fundReduceCoef2; in icvComputeProjectMatrices6Points() local
309 fundReduceCoef2 = cvMat(1,5,CV_64F,fundReduceCoef2_dat); in icvComputeProjectMatrices6Points()
311 GetGeneratorReduceFundSolution(&corrPoints1, &corrPoints2, &fundReduceCoef1, &fundReduceCoef2); in icvComputeProjectMatrices6Points()
319 numSol = GetGoodReduceFundamMatrFromTwo(&fundReduceCoef1, &fundReduceCoef2,&resFundReduceCoef); in icvComputeProjectMatrices6Points()
1420 …atorReduceFundSolution(CvMat* points1,CvMat* points2,CvMat* fundReduceCoef1,CvMat* fundReduceCoef2) in GetGeneratorReduceFundSolution() argument
1428 if( points1 == 0 || points2 == 0 || fundReduceCoef1 == 0 || fundReduceCoef2 == 0) in GetGeneratorReduceFundSolution()
1433 …MAT(points1) || !CV_IS_MAT(points2) || !CV_IS_MAT(fundReduceCoef1) || !CV_IS_MAT(fundReduceCoef2) ) in GetGeneratorReduceFundSolution()
1455 if( fundReduceCoef2->rows != 1 || fundReduceCoef2->cols != 5 ) in GetGeneratorReduceFundSolution()
1507 cvmSet(fundReduceCoef2,0,i,cvmGet(&matrV,4,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()
1544 if( fundReduceCoef2->rows != 1 || fundReduceCoef2->cols != 5 ) in GetGoodReduceFundamMatrFromTwo()
1562 p2 = cvmGet(fundReduceCoef2,0,0); in GetGoodReduceFundamMatrFromTwo()
1563 q2 = cvmGet(fundReduceCoef2,0,1); in GetGoodReduceFundamMatrFromTwo()
1564 r2 = cvmGet(fundReduceCoef2,0,2); in GetGoodReduceFundamMatrFromTwo()
1565 s2 = cvmGet(fundReduceCoef2,0,3); in GetGoodReduceFundamMatrFromTwo()
1566 t2 = cvmGet(fundReduceCoef2,0,4); in GetGoodReduceFundamMatrFromTwo()
1596 alpha * cvmGet(fundReduceCoef1,0,j) + (1-alpha) * cvmGet(fundReduceCoef2,0,j) ); in GetGoodReduceFundamMatrFromTwo()