Home
last modified time | relevance | path

Searched defs:RGB5x52Gray (Results 1 – 3 of 3) sorted by relevance

/external/opencv3/modules/cudev/include/opencv2/cudev/functional/detail/
Dcolor_cvt.hpp285 template <> struct RGB5x52Gray<5> struct
288 __device__ uchar operator ()(ushort src) const in operator ()()
294 template <> struct RGB5x52Gray<6> struct
297 __device__ uchar operator ()(ushort src) const in operator ()()
/external/opencv3/modules/core/include/opencv2/core/cuda/detail/
Dcolor_detail.hpp421 template<int green_bits> struct RGB5x52Gray : unary_function<ushort, uchar> struct
427 __host__ __device__ __forceinline__ RGB5x52Gray() {} in RGB5x52Gray() function
428 __host__ __device__ __forceinline__ RGB5x52Gray(const RGB5x52Gray&) {} in RGB5x52Gray() function
435 typedef ::cv::cuda::device::color_detail::RGB5x52Gray<green_bits> functor_type; \
/external/opencv3/modules/imgproc/src/
Dcolor.cpp1081 struct RGB5x52Gray struct
1083 typedef uchar channel_type;
1085 RGB5x52Gray(int _greenBits) : greenBits(_greenBits) in RGB5x52Gray() argument
1105 void operator()(const uchar* src, uchar* dst, int n) const in operator ()()
1237 int greenBits;
1240 uint16x4_t v_b2y, v_g2y, v_r2y;
1241 uint32x4_t v_delta;
1242 uint16x8_t v_f8, v_fc;
1244 bool haveSIMD;
1245 __m128i v_b2y, v_g2y, v_r2y;
[all …]