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

/external/opencv/cvaux/src/
H A Dcvlevmartrif.cpp270 CvMat **resultProjMatrs, CvMat *resultPoints4D)
283 if( projMatrs == 0 || projPoints == 0 || resultProjMatrs == 0 || resultPoints4D == 0)
318 if( resultProjMatrs[i] == 0 )
320 CV_ERROR( CV_StsNullPtr, "Some of resultProjMatrs is a NULL pointer" );
334 if( !CV_IS_MAT(resultProjMatrs[i]) )
336 CV_ERROR( CV_StsUnsupportedFormat, "Each of resultProjMatrs must be a matrix" );
347 CV_ERROR( CV_StsUnmatchedSizes, "Size of resultProjMatrs must be 3x4" );
350 if( resultProjMatrs[i]->rows != 3 || resultProjMatrs[i]->cols != 4 )
352 CV_ERROR( CV_StsUnmatchedSizes, "Size of resultProjMatrs mus
269 icvOptimizeProjectionTrifocal(CvMat **projMatrs,CvMat **projPoints, CvMat **resultProjMatrs, CvMat *resultPoints4D) argument
[all...]
H A Dcvlevmarprojbandle.cpp1039 CvMat** resultProjMatrs, CvMat* resultPoints4D,int maxIter,double epsilon )
1055 CvMat** resultProjMatrs, CvMat* resultPoints4D,int maxIter,double epsilon )
1175 if( !CV_IS_MAT(resultProjMatrs[currImage]) )
1177 CV_ERROR( CV_StsUnsupportedFormat, "each of resultProjMatrs must be a matrix 3 x 4" );
1179 if( resultProjMatrs[currImage]->rows != 3 || resultProjMatrs[currImage]->cols != 4 )
1181 CV_ERROR( CV_StsOutOfRange, "each of resultProjMatrs must be a matrix 3 x 4" );
1741 cvCopy(newVectorX_projMatrs[currImage],resultProjMatrs[currImage]);
1053 cvOptimizeLevenbergMarquardtBundle( CvMat** projMatrs, CvMat** observProjPoints, CvMat** pointsPres, int numImages, CvMat** resultProjMatrs, CvMat* resultPoints4D,int maxIter,double epsilon ) argument

Completed in 44 milliseconds