HomeSort by relevance Sort by last modified time
    Searched refs:m_temp (Results 1 - 7 of 7) sorted by null

  /external/opencv/cvaux/src/
camshift.cpp 63 m_temp = 0;
76 cvReleaseImage( &m_temp );
93 if( !m_temp || !m_mask || !m_color_planes[0] || !m_color_planes[n-1] || !m_back_project ||
94 m_temp->width != size.width || m_temp->height != size.height ||
95 m_temp->nChannels != 3 )
97 cvReleaseImage( &m_temp );
98 m_temp = cvCreateImage( size, IPL_DEPTH_8U, 3 );
111 cvCvtColor( image, m_temp, CV_BGR2HSV );
112 cvGetRawData( m_temp, &color_data, &color_step, &size )
    [all...]
  /external/eigen/Eigen/src/Eigenvalues/
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; member in class:Eigen::HessenbergDecomposition
  /external/eigen/Eigen/src/SVD/
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(), lda, (MKLRTYPE*)m_singularValues.data(), u, ldu, vt, ldvt, superb.data()); \
  /external/eigen/Eigen/src/QR/
HouseholderQR.h 68 HouseholderQR() : m_qr(), m_hCoeffs(), m_temp(), m_isInitialized(false) {}
79 m_temp(cols),
85 m_temp(matrix.cols()),
169 RowVectorType m_temp; member in class:Eigen::HouseholderQR
322 m_temp.resize(cols);
324 internal::householder_qr_inplace_blocked(m_qr, m_hCoeffs, 48, m_temp.data());
ColPivHouseholderQR.h 71 m_temp(),
86 m_temp(cols),
96 m_temp(matrix.cols()),
334 RowVectorType m_temp; member in class:Eigen::ColPivHouseholderQR
368 m_temp.resize(cols);
433 .applyHouseholderOnTheLeft(m_qr.col(k).tail(rows-k-1), m_hCoeffs.coeffRef(k), &m_temp.coeffRef(k+1));
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; member in class:Eigen::FullPivHouseholderQR
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/opencv/cvaux/include/
cvaux.hpp 136 IplImage* m_temp; member in class:CvCamShiftTracker

Completed in 354 milliseconds