G2Y 100 modules/core/include/opencv2/core/cuda/detail/color_detail.hpp G2Y = 9617, G2Y 409 modules/core/include/opencv2/core/cuda/detail/color_detail.hpp return (uchar)CV_DESCALE(((t << 3) & 0xf8) * B2Y + ((t >> 3) & 0xfc) * G2Y + ((t >> 8) & 0xf8) * R2Y, yuv_shift); G2Y 417 modules/core/include/opencv2/core/cuda/detail/color_detail.hpp return (uchar)CV_DESCALE(((t << 3) & 0xf8) * B2Y + ((t >> 2) & 0xf8) * G2Y + ((t >> 7) & 0xf8) * R2Y, yuv_shift); G2Y 446 modules/core/include/opencv2/core/cuda/detail/color_detail.hpp return (T)CV_DESCALE((unsigned)(src[bidx] * B2Y + src[1] * G2Y + src[bidx^2] * R2Y), yuv_shift); G2Y 454 modules/core/include/opencv2/core/cuda/detail/color_detail.hpp return CV_DESCALE((uint)(b * B2Y + g * G2Y + r * R2Y), yuv_shift); G2Y 498 modules/core/include/opencv2/core/cuda/detail/color_detail.hpp __constant__ int c_RGB2YUVCoeffs_i[5] = { B2Y, G2Y, R2Y, 8061, 14369 }; G2Y 637 modules/core/include/opencv2/core/cuda/detail/color_detail.hpp __constant__ int c_RGB2YCrCbCoeffs_i[5] = {R2Y, G2Y, B2Y, 11682, 9241}; G2Y 99 modules/cudev/include/opencv2/cudev/functional/detail/color_cvt.hpp G2Y = 9617, G2Y 290 modules/cudev/include/opencv2/cudev/functional/detail/color_cvt.hpp return (uchar) CV_CUDEV_DESCALE(((src << 3) & 0xf8) * B2Y + ((src >> 2) & 0xf8) * G2Y + ((src >> 7) & 0xf8) * R2Y, yuv_shift); G2Y 299 modules/cudev/include/opencv2/cudev/functional/detail/color_cvt.hpp return (uchar) CV_CUDEV_DESCALE(((src << 3) & 0xf8) * B2Y + ((src >> 3) & 0xfc) * G2Y + ((src >> 8) & 0xf8) * R2Y, yuv_shift); G2Y 313 modules/cudev/include/opencv2/cudev/functional/detail/color_cvt.hpp return (T) CV_CUDEV_DESCALE(b * B2Y + g * G2Y + r * R2Y, yuv_shift); G2Y 332 modules/cudev/include/opencv2/cudev/functional/detail/color_cvt.hpp __constant__ int c_RGB2YUVCoeffs_i[5] = { B2Y, G2Y, R2Y, 8061, 14369 }; G2Y 426 modules/cudev/include/opencv2/cudev/functional/detail/color_cvt.hpp __constant__ int c_RGB2YCrCbCoeffs_i[5] = { R2Y, G2Y, B2Y, 11682, 9241 }; G2Y 1075 modules/imgproc/src/color.cpp G2Y = 9617, G2Y 1089 modules/imgproc/src/color.cpp v_g2y = vdup_n_u16(G2Y); G2Y 1097 modules/imgproc/src/color.cpp v_g2y = _mm_set1_epi16(G2Y); G2Y 1168 modules/imgproc/src/color.cpp ((t >> 3) & 0xfc)*G2Y + G2Y 1232 modules/imgproc/src/color.cpp ((t >> 2) & 0xf8)*G2Y + G2Y 1281 modules/imgproc/src/color.cpp const int coeffs0[] = { R2Y, G2Y, B2Y }; G2Y 1315 modules/imgproc/src/color.cpp static const int coeffs0[] = { R2Y, G2Y, B2Y }; G2Y 1476 modules/imgproc/src/color.cpp static const int coeffs0[] = { R2Y, G2Y, B2Y }; G2Y 1685 modules/imgproc/src/color.cpp static const int coeffs0[] = { R2Y, G2Y, B2Y }; G2Y 1905 modules/imgproc/src/color.cpp static const int coeffs0[] = {R2Y, G2Y, B2Y, 11682, 9241}; G2Y 1939 modules/imgproc/src/color.cpp static const int coeffs0[] = {R2Y, G2Y, B2Y, 11682, 9241}; G2Y 2033 modules/imgproc/src/color.cpp static const int coeffs0[] = {R2Y, G2Y, B2Y, 11682, 9241}; G2Y 2156 modules/imgproc/src/color.cpp static const int coeffs0[] = {R2Y, G2Y, B2Y, 11682, 9241}; G2Y 2306 modules/imgproc/src/color.cpp static const int coeffs0[] = {R2Y, G2Y, B2Y, 11682, 9241}; G2Y 7693 modules/imgproc/src/color.cpp static const int yuv_i[] = { B2Y, G2Y, R2Y, 8061, 14369 }; G2Y 517 modules/imgproc/src/demosaicing.cpp const int G2Y = 9617; G2Y 557 modules/imgproc/src/demosaicing.cpp t2 = bayer[bayer_step+1]*(2*G2Y); G2Y 564 modules/imgproc/src/demosaicing.cpp int delta = vecOp.bayer2Gray(bayer, bayer_step, dst, size.width, bcoeff, G2Y, rcoeff); G2Y 571 modules/imgproc/src/demosaicing.cpp t1 = (bayer[1] + bayer[bayer_step] + bayer[bayer_step+2] + bayer[bayer_step*2+1])*G2Y; G2Y 577 modules/imgproc/src/demosaicing.cpp t2 = bayer[bayer_step+2]*(2*G2Y); G2Y 584 modules/imgproc/src/demosaicing.cpp t1 = (bayer[1] + bayer[bayer_step] + bayer[bayer_step+2] + bayer[bayer_step*2+1])*G2Y; G2Y 82 modules/imgproc/src/opencl/cvtcolor.cl G2Y = 9617, G2Y 156 modules/imgproc/src/opencl/cvtcolor.cl dst[0] = (DATA_TYPE)CV_DESCALE(mad24(src_pix.B_COMP, B2Y, mad24(src_pix.G_COMP, G2Y, mul24(src_pix.R_COMP, R2Y))), yuv_shift); G2Y 205 modules/imgproc/src/opencl/cvtcolor.cl __constant int c_RGB2YUVCoeffs_i[5] = { B2Y, G2Y, R2Y, 8061, 14369 }; G2Y 620 modules/imgproc/src/opencl/cvtcolor.cl __constant int c_RGB2YCrCbCoeffs_i[5] = {R2Y, G2Y, B2Y, 11682, 9241}; G2Y 977 modules/imgproc/src/opencl/cvtcolor.cl dst[dst_index] = (uchar)CV_DESCALE(mad24((t << 3) & 0xf8, B2Y, mad24((t >> 3) & 0xfc, G2Y, ((t >> 8) & 0xf8) * R2Y)), yuv_shift); G2Y 979 modules/imgproc/src/opencl/cvtcolor.cl dst[dst_index] = (uchar)CV_DESCALE(mad24((t << 3) & 0xf8, B2Y, mad24((t >> 2) & 0xf8, G2Y, ((t >> 7) & 0xf8) * R2Y)), yuv_shift);