Searched refs:m_temp (Results 1 – 7 of 7) sorted by relevance
/external/opencv/cvaux/src/ |
D | camshift.cpp | 63 m_temp = 0; in CvCamShiftTracker() 76 cvReleaseImage( &m_temp ); in ~CvCamShiftTracker() 93 if( !m_temp || !m_mask || !m_color_planes[0] || !m_color_planes[n-1] || !m_back_project || in color_transform() 94 m_temp->width != size.width || m_temp->height != size.height || in color_transform() 95 m_temp->nChannels != 3 ) in color_transform() 97 cvReleaseImage( &m_temp ); in color_transform() 98 m_temp = cvCreateImage( size, IPL_DEPTH_8U, 3 ); in color_transform() 111 cvCvtColor( image, m_temp, CV_BGR2HSV ); in color_transform() 112 cvGetRawData( m_temp, &color_data, &color_step, &size ); in color_transform()
|
/external/eigen/Eigen/src/Eigenvalues/ |
D | HessenbergDecomposition.h | 102 m_temp(size), 120 m_temp(matrix.rows()), 129 _compute(m_matrix, m_hCoeffs, m_temp); 159 _compute(m_matrix, m_hCoeffs, m_temp); 275 VectorType m_temp;
|
/external/eigen/Eigen/src/QR/ |
D | HouseholderQR.h | 68 HouseholderQR() : m_qr(), m_hCoeffs(), m_temp(), m_isInitialized(false) {} in HouseholderQR() 79 m_temp(cols), in HouseholderQR() 85 m_temp(matrix.cols()), in HouseholderQR() 169 RowVectorType m_temp; variable 322 m_temp.resize(cols); 324 internal::householder_qr_inplace_blocked(m_qr, m_hCoeffs, 48, m_temp.data());
|
D | ColPivHouseholderQR.h | 71 m_temp(), in ColPivHouseholderQR() 86 m_temp(cols), in ColPivHouseholderQR() 96 m_temp(matrix.cols()), in ColPivHouseholderQR() 334 RowVectorType m_temp; variable 368 m_temp.resize(cols); in compute() 433 ….applyHouseholderOnTheLeft(m_qr.col(k).tail(rows-k-1), m_hCoeffs.coeffRef(k), &m_temp.coeffRef(k+1… in compute()
|
D | FullPivHouseholderQR.h | 83 m_temp(), 99 m_temp((std::min)(rows,cols)), 109 m_temp((std::min)(matrix.rows(), matrix.cols())), 354 RowVectorType m_temp; 388 m_temp.resize(cols); 445 ….applyHouseholderOnTheLeft(m_qr.col(k).tail(rows-k-1), m_hCoeffs.coeffRef(k), &m_temp.coeffRef(k+1…
|
/external/eigen/Eigen/src/SVD/ |
D | JacobiSVD_MKL.h | 72 MatrixType m_temp; m_temp = matrix; \ 73 …LAPACKE_##MKLPREFIX##gesvd( matrix_order, jobu, jobvt, m_rows, m_cols, (MKLTYPE*)m_temp.data(), ld…
|
/external/opencv/cvaux/include/ |
D | cvaux.hpp | 136 IplImage* m_temp; member in CvCamShiftTracker
|