Home
last modified time | relevance | path

Searched refs:projMatrCoefs (Results 1 – 1 of 1) sorted by relevance

/external/opencv/cvaux/src/
Dcvtrifocal.cpp71 void GetProjMatrFromReducedFundamental(CvMat* fundReduceCoefs,CvMat* projMatrCoefs);
331 CvMat projMatrCoefs; in icvComputeProjectMatrices6Points() local
333 projMatrCoefs = cvMat(1,4,CV_64F,projMatrCoefs_dat); in icvComputeProjectMatrices6Points()
335 GetProjMatrFromReducedFundamental(&fundCoefs,&projMatrCoefs); in icvComputeProjectMatrices6Points()
1608 void GetProjMatrFromReducedFundamental(CvMat* fundReduceCoefs,CvMat* projMatrCoefs) in GetProjMatrFromReducedFundamental() argument
1614 if( fundReduceCoefs == 0 || projMatrCoefs == 0 ) in GetProjMatrFromReducedFundamental()
1619 if( !CV_IS_MAT(fundReduceCoefs) || !CV_IS_MAT(projMatrCoefs) ) in GetProjMatrFromReducedFundamental()
1630 if( projMatrCoefs->rows != 1 || projMatrCoefs->cols != 4 ) in GetProjMatrFromReducedFundamental()
1754 cvmSet(projMatrCoefs,0,0,a); in GetProjMatrFromReducedFundamental()
1755 cvmSet(projMatrCoefs,0,1,b); in GetProjMatrFromReducedFundamental()
[all …]