OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:c_YUV2RGBCoeffs_f
(Results
1 - 3
of
3
) sorted by null
/external/opencv3/modules/cudev/include/opencv2/cudev/functional/detail/
color_cvt.hpp
380
__constant__ float
c_YUV2RGBCoeffs_f
[5] = { 2.032f, -0.395f, -0.581f, 1.140f };
408
const float b = src.x + (src.z - ColorChannel<float>::half()) *
c_YUV2RGBCoeffs_f
[3];
409
const float g = src.x + (src.z - ColorChannel<float>::half()) *
c_YUV2RGBCoeffs_f
[2] + (src.y - ColorChannel<float>::half()) *
c_YUV2RGBCoeffs_f
[1];
410
const float r = src.x + (src.y - ColorChannel<float>::half()) *
c_YUV2RGBCoeffs_f
[0];
[
all
...]
/external/opencv3/modules/core/include/opencv2/core/cuda/detail/
color_detail.hpp
546
__constant__ float
c_YUV2RGBCoeffs_f
[5] = { 2.032f, -0.395f, -0.581f, 1.140f };
587
dst[bidx] = src.x + (src.z - ColorChannel<float>::half()) *
c_YUV2RGBCoeffs_f
[3];
589
dst[1] = src.x + (src.z - ColorChannel<float>::half()) *
c_YUV2RGBCoeffs_f
[2]
590
+ (src.y - ColorChannel<float>::half()) *
c_YUV2RGBCoeffs_f
[1];
592
dst[bidx^2] = src.x + (src.y - ColorChannel<float>::half()) *
c_YUV2RGBCoeffs_f
[0];
[
all
...]
/external/opencv3/modules/imgproc/src/opencl/
cvtcolor.cl
254
__constant float
c_YUV2RGBCoeffs_f
[4] = { 2.032f, -0.395f, -0.581f, 1.140f };
280
__constant float * coeffs =
c_YUV2RGBCoeffs_f
;
[
all
...]
Completed in 35 milliseconds