Searched defs:InInterval (Results 1 – 3 of 3) sorted by relevance
/external/opencv3/modules/cudalegacy/src/cuda/ |
D | ccomponetns.cu | 131 template<typename T, int CH> struct InInterval {}; struct 133 template<typename T> struct InInterval<T, 1> struct 135 typedef typename VecTraits<T>::elem_type E; 136 …host__ __device__ __forceinline__ InInterval(const float4& _lo, const float4& _hi) : lo((E)(-_lo.x… in InInterval() argument 137 T lo, hi; 139 … template<typename I> __device__ __forceinline__ bool operator() (const I& a, const I& b) const in operator ()() 147 template<typename T> struct InInterval<T, 3> struct 149 typedef typename VecTraits<T>::elem_type E; 150 __host__ __device__ __forceinline__ InInterval(const float4& _lo, const float4& _hi) in InInterval() argument 152 T lo, hi; [all …]
|
/external/opencv3/modules/cudalegacy/perf/ |
D | perf_labeling.cpp | 65 struct InInterval struct 67 InInterval(const int& _lo, const int& _hi) : lo(-_lo), hi(_hi) {} in InInterval() function 68 const int lo, hi; 70 bool operator() (const unsigned char a, const unsigned char b) const in operator ()()
|
/external/opencv3/modules/cudalegacy/test/ |
D | test_labeling.cpp | 63 struct InInterval struct 65 InInterval(const int& _lo, const int& _hi) : lo(-_lo), hi(_hi) {} in InInterval() argument 66 const int lo, hi; 68 bool operator() (const unsigned char a, const unsigned char b) const in operator ()()
|