Searched defs:Gray2RGB (Results 1 – 3 of 3) sorted by relevance
/external/opencv3/modules/core/include/opencv2/core/cuda/detail/ |
D | color_detail.hpp | 316 …template <typename T, int dcn> struct Gray2RGB : unary_function<T, typename TypeVec<T, dcn>::vec_t… struct 318 __device__ __forceinline__ typename TypeVec<T, dcn>::vec_type operator()(T src) const in operator ()() 327 __host__ __device__ __forceinline__ Gray2RGB() {} in Gray2RGB() function 328 __host__ __device__ __forceinline__ Gray2RGB(const Gray2RGB&) {} in Gray2RGB() function 331 template <> struct Gray2RGB<uchar, 4> : unary_function<uchar, uint> struct 343 __host__ __device__ __forceinline__ Gray2RGB() {} in Gray2RGB() function 344 __host__ __device__ __forceinline__ Gray2RGB(const Gray2RGB&) {} in Gray2RGB() function 351 typedef ::cv::cuda::device::color_detail::Gray2RGB<T, dcn> functor_type; \
|
/external/opencv3/modules/cudev/include/opencv2/cudev/functional/detail/ |
D | color_cvt.hpp | 243 template <typename T, int dcn> struct Gray2RGB struct 246 __device__ typename MakeVec<T, dcn>::type operator ()(T src) const in operator ()()
|
/external/opencv3/modules/imgproc/src/ |
D | color.cpp | 933 struct Gray2RGB struct 935 typedef _Tp channel_type; 937 Gray2RGB(int _dstcn) : dstcn(_dstcn) {} in Gray2RGB() argument 938 void operator()(const _Tp* src, _Tp* dst, int n) const in operator ()() 956 int dstcn;
|