OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:c_RGB2YCrCbCoeffs_f
(Results
1 - 3
of
3
) sorted by null
/external/opencv3/modules/cudev/include/opencv2/cudev/functional/detail/
color_cvt.hpp
425
__constant__ float
c_RGB2YCrCbCoeffs_f
[5] = { 0.299f, 0.587f, 0.114f, 0.713f, 0.564f };
464
dst.x = b *
c_RGB2YCrCbCoeffs_f
[2] + g *
c_RGB2YCrCbCoeffs_f
[1] + r *
c_RGB2YCrCbCoeffs_f
[0];
465
dst.y = (r - dst.x) *
c_RGB2YCrCbCoeffs_f
[3] + ColorChannel<float>::half();
466
dst.z = (b - dst.x) *
c_RGB2YCrCbCoeffs_f
[4] + ColorChannel<float>::half();
[
all
...]
/external/opencv3/modules/core/include/opencv2/core/cuda/detail/
color_detail.hpp
636
__constant__ float
c_RGB2YCrCbCoeffs_f
[5] = {0.299f, 0.587f, 0.114f, 0.713f, 0.564f};
671
dst.x = src[0] *
c_RGB2YCrCbCoeffs_f
[bidx^2] + src[1] *
c_RGB2YCrCbCoeffs_f
[1] + src[2] *
c_RGB2YCrCbCoeffs_f
[bidx];
672
dst.y = (src[bidx^2] - dst.x) *
c_RGB2YCrCbCoeffs_f
[3] + ColorChannel<float>::half();
673
dst.z = (src[bidx] - dst.x) *
c_RGB2YCrCbCoeffs_f
[4] + ColorChannel<float>::half();
[
all
...]
/external/opencv3/modules/imgproc/src/opencl/
cvtcolor.cl
619
__constant float
c_RGB2YCrCbCoeffs_f
[5] = {0.299f, 0.587f, 0.114f, 0.713f, 0.564f};
645
__constant float * coeffs =
c_RGB2YCrCbCoeffs_f
;
[
all
...]
Completed in 37 milliseconds