OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:R2Y
(Results
1 - 5
of
5
) sorted by null
/external/opencv3/modules/imgproc/src/opencl/
cvtcolor.cl
81
R2Y
= 4899,
156
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);
205
__constant int c_RGB2YUVCoeffs_i[5] = { B2Y, G2Y,
R2Y
, 8061, 14369 };
620
__constant int c_RGB2YCrCbCoeffs_i[5] = {
R2Y
, G2Y, B2Y, 11682, 9241};
[
all
...]
/external/opencv3/modules/cudev/include/opencv2/cudev/functional/detail/
color_cvt.hpp
98
R2Y
= 4899,
290
return (uchar) CV_CUDEV_DESCALE(((src << 3) & 0xf8) * B2Y + ((src >> 2) & 0xf8) * G2Y + ((src >> 7) & 0xf8) *
R2Y
, yuv_shift);
299
return (uchar) CV_CUDEV_DESCALE(((src << 3) & 0xf8) * B2Y + ((src >> 3) & 0xfc) * G2Y + ((src >> 8) & 0xf8) *
R2Y
, yuv_shift);
313
return (T) CV_CUDEV_DESCALE(b * B2Y + g * G2Y + r *
R2Y
, yuv_shift);
332
__constant__ int c_RGB2YUVCoeffs_i[5] = { B2Y, G2Y,
R2Y
, 8061, 14369 };
426
__constant__ int c_RGB2YCrCbCoeffs_i[5] = {
R2Y
, G2Y, B2Y, 11682, 9241 };
[
all
...]
/external/opencv3/modules/imgproc/src/
color.cpp
[
all
...]
demosaicing.cpp
612
const int
R2Y
= 4899;
616
int bcoeff = B2Y, rcoeff =
R2Y
;
[
all
...]
/external/opencv3/modules/core/include/opencv2/core/cuda/detail/
color_detail.hpp
99
R2Y
= 4899,
409
return (uchar)CV_DESCALE(((t << 3) & 0xf8) * B2Y + ((t >> 3) & 0xfc) * G2Y + ((t >> 8) & 0xf8) *
R2Y
, yuv_shift);
417
return (uchar)CV_DESCALE(((t << 3) & 0xf8) * B2Y + ((t >> 2) & 0xf8) * G2Y + ((t >> 7) & 0xf8) *
R2Y
, yuv_shift);
446
return (T)CV_DESCALE((unsigned)(src[bidx] * B2Y + src[1] * G2Y + src[bidx^2] *
R2Y
), yuv_shift);
454
return CV_DESCALE((uint)(b * B2Y + g * G2Y + r *
R2Y
), yuv_shift);
498
__constant__ int c_RGB2YUVCoeffs_i[5] = { B2Y, G2Y,
R2Y
, 8061, 14369 };
637
__constant__ int c_RGB2YCrCbCoeffs_i[5] = {
R2Y
, G2Y, B2Y, 11682, 9241};
[
all
...]
Completed in 175 milliseconds