Searched defs:projMatrCoefs (Results 1 - 1 of 1) sorted by relevance

/external/opencv/cvaux/src/
H A Dcvtrifocal.cpp71 void GetProjMatrFromReducedFundamental(CvMat* fundReduceCoefs,CvMat* projMatrCoefs);
331 CvMat projMatrCoefs; local
333 projMatrCoefs = cvMat(1,4,CV_64F,projMatrCoefs_dat);
335 GetProjMatrFromReducedFundamental(&fundCoefs,&projMatrCoefs);
1608 void GetProjMatrFromReducedFundamental(CvMat* fundReduceCoefs,CvMat* projMatrCoefs) argument
1614 if( fundReduceCoefs == 0 || projMatrCoefs == 0 )
1619 if( !CV_IS_MAT(fundReduceCoefs) || !CV_IS_MAT(projMatrCoefs) )
1630 if( projMatrCoefs->rows != 1 || projMatrCoefs->cols != 4 )
1632 CV_ERROR( CV_StsUnmatchedSizes, "Size of projMatrCoefs mus
[all...]

Completed in 71 milliseconds