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

  /external/opencv3/modules/core/include/opencv2/core/
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 )
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,
82 Matx<_Tp, _rows, _cols>& dst )
86 dst = Matx<_Tp, _cols, _rows>(static_cast<const _Tp*>(src.data())).t();
90 dst = Matx<_Tp, _rows, _cols>(static_cast<const _Tp*>(src.data()));
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 )
98 CV_DbgAssert(src.rows == _rows && src.cols == _cols)
    [all...]
mat.inl.hpp 324 Mat::Mat(int _rows, int _cols, int _type)
328 create(_rows, _cols, _type);
332 Mat::Mat(int _rows, int _cols, int _type, const Scalar& _s)
336 create(_rows, _cols, _type);
394 Mat::Mat(int _rows, int _cols, int _type, void* _data, size_t _step)
395 : flags(MAGIC_VAL + (_type & TYPE_MASK)), dims(2), rows(_rows), cols(_cols),
642 void Mat::create(int _rows, int _cols, int _type)
645 if( dims <= 2 && rows == _rows && cols == _cols && type() == _type && data )
647 int sz[] = {_rows, _cols};
    [all...]
mat.hpp     [all...]
  /external/eigen/Eigen/src/Core/products/
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); \
93 Index rows = IsLower ? _rows : size; \
169 static void run(Index _rows, Index _cols, const EIGTYPE* _lhs, Index lhsStride, \
174 _rows, _cols, _lhs, lhsStride, _rhs, rhsIncr, _res, resIncr, alpha);
    [all...]
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, \
101 Index diagSize = (std::min)(_rows,_depth); \
102 Index rows = IsLower ? _rows : diagSize; \
118 _rows, _cols, _depth, _lhs, lhsStride, _rhs, rhsStride, res, resStride, alpha, blocking); \
125 gemm_blocking_space<ColMajor,EIGTYPE,EIGTYPE,Dynamic,Dynamic,Dynamic> gemm_blocking(_rows,_cols,_depth); \
209 Index _rows, Index _cols, Index _depth, \
216 Index rows = _rows; \
232 _rows, _cols, _depth, _lhs, lhsStride, _rhs, rhsStride, res, resStride, alpha, blocking);
    [all...]
TriangularMatrixVector.h 29 static EIGEN_DONT_INLINE void run(Index _rows, Index _cols, const LhsScalar* _lhs, Index lhsStride,
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);
108 Index rows = IsLower ? _rows : diagSize
    [all...]
TriangularMatrixMatrix.h 95 Index _rows, Index _cols, Index _depth,
108 Index _rows, Index _cols, Index _depth,
115 Index diagSize = (std::min)(_rows,_depth);
116 Index rows = IsLower ? _rows : diagSize;
236 Index _rows, Index _cols, Index _depth,
249 Index _rows, Index _cols, Index _depth,
257 Index rows = _rows;
  /external/ImageMagick/Magick++/lib/Magick++/
Pixels.h 77 size_t _rows; // Height of view member in class:Magick::Pixels
149 return _rows;
STL.h 938 size_t _rows; member in class:Magick::rollImage
    [all...]
  /external/ImageMagick/Magick++/lib/
Pixels.cpp 24 _rows(0)
43 _rows=rows_;
59 _rows=rows_;
82 _rows=rows_;
STL.cpp 879 _rows( roll_.height() )
885 _rows( rows_ )
890 image_.roll( _columns, _rows );
    [all...]
  /external/opencv3/modules/core/src/cuda/
gpu_mat.cu 109 void cv::cuda::GpuMat::create(int _rows, int _cols, int _type)
111 CV_DbgAssert( _rows >= 0 && _cols >= 0 );
115 if (rows == _rows && cols == _cols && type() == _type && data)
121 if (_rows > 0 && _cols > 0)
124 rows = _rows;
  /external/opencv3/modules/core/src/
cuda_gpu_mat.cpp 427 void cv::cuda::GpuMat::create(int _rows, int _cols, int _type)
429 (void) _rows;
matrix.cpp     [all...]
  /external/guice/lib/build/jdiff/
xerces.jar 
  /prebuilts/tools/common/m2/repository/xerces/xercesImpl/2.6.2/
xercesImpl-2.6.2.jar 
  /prebuilts/tools/common/m2/repository/xerces/xercesImpl/2.9.1/
xercesImpl-2.9.1.jar 
  /prebuilts/tools/common/m2/repository/xerces/xercesImpl/2.11.0/
xercesImpl-2.11.0.jar 

Completed in 279 milliseconds