OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:c_RGB2YUVCoeffs_f
(Results
1 - 3
of
3
) sorted by null
/external/opencv3/modules/cudev/include/opencv2/cudev/functional/detail/
color_cvt.hpp
331
__constant__ float
c_RGB2YUVCoeffs_f
[5] = { 0.114f, 0.587f, 0.299f, 0.492f, 0.877f };
370
dst.x = b *
c_RGB2YUVCoeffs_f
[2] + g *
c_RGB2YUVCoeffs_f
[1] + r *
c_RGB2YUVCoeffs_f
[0];
371
dst.y = (r - dst.x) *
c_RGB2YUVCoeffs_f
[3] + ColorChannel<float>::half();
372
dst.z = (b - dst.x) *
c_RGB2YUVCoeffs_f
[4] + ColorChannel<float>::half();
[
all
...]
/external/opencv3/modules/core/include/opencv2/core/cuda/detail/
color_detail.hpp
497
__constant__ float
c_RGB2YUVCoeffs_f
[5] = { 0.114f, 0.587f, 0.299f, 0.492f, 0.877f };
515
dst.x = src[0] *
c_RGB2YUVCoeffs_f
[bidx^2] + src[1] *
c_RGB2YUVCoeffs_f
[1] + src[2] *
c_RGB2YUVCoeffs_f
[bidx];
516
dst.y = (src[bidx^2] - dst.x) *
c_RGB2YUVCoeffs_f
[3] + ColorChannel<float>::half();
517
dst.z = (src[bidx] - dst.x) *
c_RGB2YUVCoeffs_f
[4] + ColorChannel<float>::half();
[
all
...]
/external/opencv3/modules/imgproc/src/opencl/
cvtcolor.cl
204
__constant float
c_RGB2YUVCoeffs_f
[5] = { 0.114f, 0.587f, 0.299f, 0.492f, 0.877f };
230
__constant float * coeffs =
c_RGB2YUVCoeffs_f
;
[
all
...]
Completed in 329 milliseconds