/external/opencv3/modules/cudacodec/src/cuda/ |
nv12_to_rgb.cu | 69 __device__ static void YUV2RGB(const uint* yuvi, float* red, float* green, float* blue) 177 YUV2RGB(&yuvi[0], &red[0], &green[0], &blue[0]); 178 YUV2RGB(&yuvi[3], &red[1], &green[1], &blue[1]);
|
/external/opencv3/modules/videoio/src/ |
cap_dc1394.cpp | [all...] |
/external/opencv3/modules/imgproc/test/ocl/ |
test_color.cpp | 140 OCL_TEST_P(CvtColor, YUV2RGB) { performTest(3, 3, CVTCODE(YUV2RGB)); } 142 OCL_TEST_P(CvtColor, YUV2RGBA) { performTest(3, 4, CVTCODE(YUV2RGB)); }
|
/external/opencv3/modules/cudev/include/opencv2/cudev/functional/ |
color_cvt.hpp | 120 template <typename SrcDepth> struct name ## _func : cv::cudev::color_cvt_detail::YUV2RGB<SrcDepth, scn, dcn, bidx> \
|
/external/opencv3/modules/core/include/opencv2/core/cuda/detail/ |
color_detail.hpp | 595 template <typename T, int scn, int dcn, int bidx> struct YUV2RGB 607 __host__ __device__ __forceinline__ YUV2RGB() {} 608 __host__ __device__ __forceinline__ YUV2RGB(const YUV2RGB&) {} 611 template <int bidx> struct YUV2RGB<uchar, 4, 4, bidx> : unary_function<uint, uint> 617 __host__ __device__ __forceinline__ YUV2RGB() {} 618 __host__ __device__ __forceinline__ YUV2RGB(const YUV2RGB&) {} 625 typedef ::cv::cuda::device::color_detail::YUV2RGB<T, scn, dcn, bidx> functor_type; \ [all...] |
/external/opencv3/modules/cudev/include/opencv2/cudev/functional/detail/ |
color_cvt.hpp | 383 template <typename T, int scn, int dcn, int bidx> struct YUV2RGB 403 template <int scn, int dcn, int bidx> struct YUV2RGB<float, scn, dcn, bidx> [all...] |
/external/opencv3/modules/imgproc/src/opencl/ |
cvtcolor.cl | 257 __kernel void YUV2RGB(__global const uchar* srcptr, int src_step, int src_offset, [all...] |
/external/opencv3/modules/cudaimgproc/test/ |
test_color.cpp | [all...] |