/external/opencv3/modules/core/include/opencv2/core/ |
D | eigen.hpp | 62 template<typename _Tp, int _rows, int _cols, int _options, int _maxRows, int _maxCols> static inline 63 void eigen2cv( const Eigen::Matrix<_Tp, _rows, _cols, _options, _maxRows, _maxCols>& src, Mat& dst ) in eigen2cv() argument 80 template<typename _Tp, int _rows, int _cols, int _options, int _maxRows, int _maxCols> static inline 81 void eigen2cv( const Eigen::Matrix<_Tp, _rows, _cols, _options, _maxRows, _maxCols>& src, in eigen2cv() argument 82 Matx<_Tp, _rows, _cols>& dst ) in eigen2cv() 86 dst = Matx<_Tp, _cols, _rows>(static_cast<const _Tp*>(src.data())).t(); in eigen2cv() 90 dst = Matx<_Tp, _rows, _cols>(static_cast<const _Tp*>(src.data())); in eigen2cv() 94 template<typename _Tp, int _rows, int _cols, int _options, int _maxRows, int _maxCols> static inline 96 Eigen::Matrix<_Tp, _rows, _cols, _options, _maxRows, _maxCols>& dst ) in cv2eigen() argument 98 CV_DbgAssert(src.rows == _rows && src.cols == _cols); in cv2eigen() [all …]
|
D | mat.inl.hpp | 324 Mat::Mat(int _rows, int _cols, int _type) in Mat() argument 328 create(_rows, _cols, _type); in Mat() 332 Mat::Mat(int _rows, int _cols, int _type, const Scalar& _s) in Mat() argument 336 create(_rows, _cols, _type); in Mat() 394 Mat::Mat(int _rows, int _cols, int _type, void* _data, size_t _step) in Mat() argument 395 : flags(MAGIC_VAL + (_type & TYPE_MASK)), dims(2), rows(_rows), cols(_cols), in Mat() 642 void Mat::create(int _rows, int _cols, int _type) in create() argument 645 if( dims <= 2 && rows == _rows && cols == _cols && type() == _type && data ) in create() 647 int sz[] = {_rows, _cols}; in create() 1205 Mat_<_Tp>::Mat_(int _rows, int _cols) in Mat_() argument [all …]
|
D | mat.hpp | 1955 Mat_(int _rows, int _cols); 1957 Mat_(int _rows, int _cols, const _Tp& value); 1971 Mat_(int _rows, int _cols, _Tp* _data, size_t _step=AUTO_STEP); 2009 void create(int _rows, int _cols);
|
/external/eigen/Eigen/src/Core/products/ |
D | TriangularMatrixVector_MKL.h | 53 static void run(Index _rows, Index _cols, const Scalar* _lhs, Index lhsStride, \ 56 _rows, _cols, _lhs, lhsStride, _rhs, rhsIncr, _res, resIncr, alpha); \ 61 static void run(Index _rows, Index _cols, const Scalar* _lhs, Index lhsStride, \ 64 _rows, _cols, _lhs, lhsStride, _rhs, rhsIncr, _res, resIncr, alpha); \ 84 static void run(Index _rows, Index _cols, const EIGTYPE* _lhs, Index lhsStride, \ 89 _rows, _cols, _lhs, lhsStride, _rhs, rhsIncr, _res, resIncr, alpha); \ 92 Index size = (std::min)(_rows,_cols); \ 94 Index cols = IsLower ? size : _cols; \ 169 static void run(Index _rows, Index _cols, const EIGTYPE* _lhs, Index lhsStride, \ 174 _rows, _cols, _lhs, lhsStride, _rhs, rhsIncr, _res, resIncr, alpha); \ [all …]
|
D | TriangularMatrixMatrix_MKL.h | 59 …static inline void run(Index _rows, Index _cols, Index _depth, const Scalar* _lhs, Index lhsStride… 64 _rows, _cols, _depth, _lhs, lhsStride, _rhs, rhsStride, res, resStride, alpha, blocking); \ 95 Index _rows, Index _cols, Index _depth, \ 104 Index cols = _cols; \ 118 … _rows, _cols, _depth, _lhs, lhsStride, _rhs, rhsStride, res, resStride, alpha, blocking); \ 125 …ocking_space<ColMajor,EIGTYPE,EIGTYPE,Dynamic,Dynamic,Dynamic> gemm_blocking(_rows,_cols,_depth); \ 209 Index _rows, Index _cols, Index _depth, \ 215 Index diagSize = (std::min)(_cols,_depth); \ 218 Index cols = IsLower ? diagSize : _cols; \ 232 … _rows, _cols, _depth, _lhs, lhsStride, _rhs, rhsStride, res, resStride, alpha, blocking); \ [all …]
|
D | TriangularMatrixVector.h | 29 …static EIGEN_DONT_INLINE void run(Index _rows, Index _cols, const LhsScalar* _lhs, Index lhsStrid… 35 ::run(Index _rows, Index _cols, const LhsScalar* _lhs, Index lhsStride, 39 Index size = (std::min)(_rows,_cols); 40 Index rows = IsLower ? _rows : (std::min)(_rows,_cols); 41 Index cols = IsLower ? (std::min)(_rows,_cols) : _cols; 97 …static EIGEN_DONT_INLINE void run(Index _rows, Index _cols, const LhsScalar* _lhs, Index lhsStride, 103 ::run(Index _rows, Index _cols, const LhsScalar* _lhs, Index lhsStride, 107 Index diagSize = (std::min)(_rows,_cols); 109 Index cols = IsLower ? diagSize : _cols;
|
D | TriangularMatrixMatrix.h | 95 Index _rows, Index _cols, Index _depth, 108 Index _rows, Index _cols, Index _depth, 118 Index cols = _cols; 236 Index _rows, Index _cols, Index _depth, 249 Index _rows, Index _cols, Index _depth, 256 Index diagSize = (std::min)(_cols,_depth); 259 Index cols = IsLower ? diagSize : _cols;
|
/external/opencv3/modules/core/src/cuda/ |
D | gpu_mat.cu | 109 void cv::cuda::GpuMat::create(int _rows, int _cols, int _type) in create() argument 111 CV_DbgAssert( _rows >= 0 && _cols >= 0 ); in create() 115 if (rows == _rows && cols == _cols && type() == _type && data) in create() 121 if (_rows > 0 && _cols > 0) in create() 125 cols = _cols; in create()
|
/external/opencv3/modules/core/src/ |
D | cuda_gpu_mat.cpp | 427 void cv::cuda::GpuMat::create(int _rows, int _cols, int _type) in create() argument 430 (void) _cols; in create()
|
D | matrix.cpp | 2166 void _OutputArray::create(int _rows, int _cols, int mtype, int i, bool allowTransposed, int fixedDe… in create() argument 2171 CV_Assert(!fixedSize() || ((Mat*)obj)->size.operator()() == Size(_cols, _rows)); in create() 2173 ((Mat*)obj)->create(_rows, _cols, mtype); in create() 2178 CV_Assert(!fixedSize() || ((UMat*)obj)->size.operator()() == Size(_cols, _rows)); in create() 2180 ((UMat*)obj)->create(_rows, _cols, mtype); in create() 2185 CV_Assert(!fixedSize() || ((cuda::GpuMat*)obj)->size() == Size(_cols, _rows)); in create() 2187 ((cuda::GpuMat*)obj)->create(_rows, _cols, mtype); in create() 2192 CV_Assert(!fixedSize() || ((ogl::Buffer*)obj)->size() == Size(_cols, _rows)); in create() 2194 ((ogl::Buffer*)obj)->create(_rows, _cols, mtype); in create() 2199 CV_Assert(!fixedSize() || ((cuda::HostMem*)obj)->size() == Size(_cols, _rows)); in create() [all …]
|