Searched refs:resultT (Results 1 - 1 of 1) sorted by relevance

/external/opencv/cvaux/src/
H A Dcvtrifocal.cpp65 void icvFindBaseTransform(CvMat* points,CvMat* resultT);
1335 void icvFindBaseTransform(CvMat* points,CvMat* resultT) argument
1341 if( points == 0 || resultT == 0 )
1346 if( !CV_IS_MAT(points) || !CV_IS_MAT(resultT) )
1348 CV_ERROR( CV_StsUnsupportedFormat, "points and resultT must be a matrices" );
1356 if( resultT->rows != 3 || resultT->cols != 3 )
1358 CV_ERROR( CV_StsUnmatchedSizes, "size of matrix resultT must be 3x3" );
1411 cvConvert(&tmpRes,resultT);

Completed in 87 milliseconds