Searched defs:_Tp (Results 1 - 6 of 6) sorted by relevance
/external/opencv3/modules/core/include/opencv2/core/ |
H A D | mat.inl.hpp | 76 template<typename _Tp> inline 77 _InputArray::_InputArray(const std::vector<_Tp>& vec) 78 { init(FIXED_TYPE + STD_VECTOR + DataType<_Tp>::type + ACCESS_READ, &vec); } 84 template<typename _Tp> inline 85 _InputArray::_InputArray(const std::vector<std::vector<_Tp> >& vec) 86 { init(FIXED_TYPE + STD_VECTOR_VECTOR + DataType<_Tp>::type + ACCESS_READ, &vec); } 88 template<typename _Tp> inline 89 _InputArray::_InputArray(const std::vector<Mat_<_Tp> >& vec) 90 { init(FIXED_TYPE + STD_VECTOR_MAT + DataType<_Tp>::type + ACCESS_READ, &vec); } 92 template<typename _Tp, in [all...] |
H A D | utility.hpp | 110 template<typename _Tp, size_t fixed_size = 1024/sizeof(_Tp)+8> class AutoBuffer 113 typedef _Tp value_type; 121 AutoBuffer(const AutoBuffer<_Tp, fixed_size>& buf); 123 AutoBuffer<_Tp, fixed_size>& operator = (const AutoBuffer<_Tp, fixed_size>& buf); 137 operator _Tp* (); 139 operator const _Tp* () const; 143 _Tp* ptr; 147 _Tp bu [all...] |
H A D | types.hpp | 73 template<typename _Tp> class Complex 79 Complex( _Tp _re, _Tp _im = 0 ); 86 _Tp re, im; //< the real and the imaginary parts 92 template<typename _Tp> class DataType< Complex<_Tp> > 95 typedef Complex<_Tp> value_type; 97 typedef _Tp channel_type; 147 template<typename _Tp> class Point_ 150 typedef _Tp value_typ [all...] |
H A D | types_c.h | 787 template<typename _Tp> 788 CvRect(const cv::Rect_<_Tp>& r): x(cv::saturate_cast<int>(r.x)), y(cv::saturate_cast<int>(r.y)), width(cv::saturate_cast<int>(r.width)), height(cv::saturate_cast<int>(r.height)) {} 789 template<typename _Tp> 790 operator cv::Rect_<_Tp>() const { return cv::Rect_<_Tp>((_Tp)x, (_Tp)y, (_Tp)width, (_Tp)height); } 873 template<typename _Tp> [all...] |
H A D | core_c.h | 2793 template<typename _Tp> class SeqIterator; 2807 template<typename _Tp> class Seq 2810 typedef SeqIterator<_Tp> iterator; 2811 typedef SeqIterator<_Tp> const_iterator; 2815 //! the constructor for wrapping CvSeq structure. The real element type in CvSeq should match _Tp. 2820 _Tp& operator [](int idx); 2822 const _Tp& operator[](int idx) const; 2824 SeqIterator<_Tp> begin() const; 2826 SeqIterator<_Tp> end() const; 2838 size_t index(const _Tp [all...] |
/external/opencv3/modules/imgproc/src/ |
H A D | color.cpp | 110 template<typename _Tp> static void splineBuild(const _Tp* f, int n, _Tp* tab) 112 _Tp cn = 0; 114 tab[0] = tab[1] = (_Tp)0; 118 _Tp t = 3*(f[i+1] - 2*f[i] + f[i-1]); 119 _Tp l = 1/(4 - tab[(i-1)*4]); 125 _Tp c = tab[i*4+1] - tab[i*4]*cn; 126 _Tp b = f[i+1] - f[i] - (cn + c*2)*(_Tp)0.333333333333333 172 typedef typename Cvt::channel_type _Tp; typedef in class:cv::CvtColorLoop_Invoker [all...] |
Completed in 118 milliseconds