HomeSort by relevance Sort by last modified time
    Searched refs:c_YCrCb2RGBCoeffs_f (Results 1 - 3 of 3) sorted by null

  /external/opencv3/modules/cudev/include/opencv2/cudev/functional/detail/
color_cvt.hpp 474 __constant__ float c_YCrCb2RGBCoeffs_f[5] = {1.403f, -0.714f, -0.344f, 1.773f};
502 const float b = src.x + (src.z - ColorChannel<float>::half()) * c_YCrCb2RGBCoeffs_f[3];
503 const float g = src.x + (src.z - ColorChannel<float>::half()) * c_YCrCb2RGBCoeffs_f[2] + (src.y - ColorChannel<float>::half()) * c_YCrCb2RGBCoeffs_f[1];
504 const float r = src.x + (src.y - ColorChannel<float>::half()) * c_YCrCb2RGBCoeffs_f[0];
    [all...]
  /external/opencv3/modules/core/include/opencv2/core/cuda/detail/
color_detail.hpp 713 __constant__ float c_YCrCb2RGBCoeffs_f[5] = {1.403f, -0.714f, -0.344f, 1.773f};
748 dst[bidx] = src.x + (src.z - ColorChannel<float>::half()) * c_YCrCb2RGBCoeffs_f[3];
749 dst[1] = src.x + (src.z - ColorChannel<float>::half()) * c_YCrCb2RGBCoeffs_f[2] + (src.y - ColorChannel<float>::half()) * c_YCrCb2RGBCoeffs_f[1];
750 dst[bidx^2] = src.x + (src.y - ColorChannel<float>::half()) * c_YCrCb2RGBCoeffs_f[0];
    [all...]
  /external/opencv3/modules/imgproc/src/opencl/
cvtcolor.cl 669 __constant float c_YCrCb2RGBCoeffs_f[4] = { 1.403f, -0.714f, -0.344f, 1.773f };
696 __constant float * coeff = c_YCrCb2RGBCoeffs_f;
    [all...]

Completed in 42 milliseconds