Searched refs:tmat (Results 1 - 5 of 5) sorted by relevance
/external/opencv/cxcore/src/ |
H A D | cxmatrix.cpp | 850 CvMat tmat; local 871 CV_CALL( cvInitMatHeader( &tmat, size.height, size.width, worktype, buffer )); 874 CV_CALL( cvCopy( mat, &tmat )); 877 CV_CALL( cvConvert( mat, &tmat )); 882 IPPI_CALL( decomp_func( tmat.data.db, tmat.step, size, 0, 0, size, &result )); 1105 CvMat tmat; local 1123 CV_CALL( cvInitMatHeader( &tmat, size.height, size.width, worktype, buffer )); 1126 CV_CALL( cvCopy( src, &tmat )); 1129 CV_CALL( cvConvert( src, &tmat )); 1405 CvMat tmat; local [all...] |
H A D | cxsvd.cpp | 1225 CvMat tmat; local 1377 cvInitMatHeader( &tmat, m, n, type, 1380 cvCopy( a, &tmat ); 1382 cvT( a, &tmat ); 1383 a = &tmat;
|
H A D | cxmatmul.cpp | 997 CvMat tmat, *D0 = D; local 1021 tmat = cvMat( d_size.height, d_size.width, type, buffer ); 1022 D = &tmat;
|
/external/opencv/cvaux/src/ |
H A D | cv3dtracker.cpp | 257 float tmat[4][4] = { { 1.f, 0.f, 0.f, 0.f }, local 268 MultMatrix(camera_info[c].mat, tmat, rmat); 284 MultMatrix(tmat, camera_info[c].mat, smat); 291 MultMatrix(camera_info[c].mat, smat, tmat);
|
/external/opencv3/modules/core/src/ |
H A D | matmul.cpp | 1197 Mat *matD = &D, tmat; local 1232 // Allocate tmat later, once the size of buf is known 1233 matD = &tmat; 1311 tmat = Mat(d_size.height, d_size.width, type, (uchar*)buf ); 1379 tmat = Mat(d_size.height, d_size.width, type, b_buf + b_buf_size + a_buf_size );
|
Completed in 113 milliseconds