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

  /external/opencv3/modules/core/src/
precomp.hpp 222 if( akind == _InputArray::MATX && sckind != _InputArray::MATX )
236 if( akind == _InputArray::MATX && sckind != _InputArray::MATX )
matrix.cpp 1142 if( k == MATX )
    [all...]
arithm.cpp     [all...]
  /external/opencv3/modules/core/include/opencv2/core/
mat.inl.hpp 93 _InputArray::_InputArray(const Matx<_Tp, m, n>& mtx)
94 { init(FIXED_TYPE + FIXED_SIZE + MATX + DataType<_Tp>::type + ACCESS_READ, &mtx, Size(n, m)); }
98 { init(FIXED_TYPE + FIXED_SIZE + MATX + DataType<_Tp>::type + ACCESS_READ, vec, Size(n, 1)); }
105 { init(FIXED_TYPE + FIXED_SIZE + MATX + CV_64F + ACCESS_READ, &val, Size(1,1)); }
132 inline bool _InputArray::isMatx() const { return kind() == _InputArray::MATX; }
164 _OutputArray::_OutputArray(Matx<_Tp, m, n>& mtx)
165 { init(FIXED_TYPE + FIXED_SIZE + MATX + DataType<_Tp>::type + ACCESS_WRITE, &mtx, Size(n, m)); }
169 { init(FIXED_TYPE + FIXED_SIZE + MATX + DataType<_Tp>::type + ACCESS_WRITE, vec, Size(n, 1)); }
188 _OutputArray::_OutputArray(const Matx<_Tp, m, n>& mtx)
189 { init(FIXED_TYPE + FIXED_SIZE + MATX + DataType<_Tp>::type + ACCESS_WRITE, &mtx, Size(n, m));
    [all...]
mat.hpp 51 #include "opencv2/core/matx.hpp"
75 where _InputArray is a class that can be constructed from `Mat`, `Mat_<T>`, `Matx<T, m, n>`,
83 InputArray, it means that you can actually pass `Mat`, `Matx`, `vector<T>` etc. (see above the
105 vector using the 2x3 matrix created inline as `Matx<float, 2, 3>` instance.
157 MATX = 2 << KIND_SHIFT,
181 template<typename _Tp, int m, int n> _InputArray(const Matx<_Tp, m, n>& matx);
294 template<typename _Tp, int m, int n> _OutputArray(Matx<_Tp, m, n>& matx);
309 template<typename _Tp, int m, int n> _OutputArray(const Matx<_Tp, m, n>& matx)
    [all...]
  /external/opencv3/modules/cudaarithm/src/
element_operations.cpp 104 const bool isScalar1 = (kind1 == _InputArray::MATX);
105 const bool isScalar2 = (kind2 == _InputArray::MATX);

Completed in 117 milliseconds