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

  /external/opencv3/modules/cudev/include/opencv2/cudev/functional/detail/
color_cvt.hpp 332 __constant__ int c_RGB2YUVCoeffs_i[5] = { B2Y, G2Y, R2Y, 8061, 14369 };
345 const int Y = CV_CUDEV_DESCALE(b * c_RGB2YUVCoeffs_i[2] + g * c_RGB2YUVCoeffs_i[1] + r * c_RGB2YUVCoeffs_i[0], yuv_shift);
346 const int Cr = CV_CUDEV_DESCALE((r - Y) * c_RGB2YUVCoeffs_i[3] + delta, yuv_shift);
347 const int Cb = CV_CUDEV_DESCALE((b - Y) * c_RGB2YUVCoeffs_i[4] + delta, yuv_shift);
    [all...]
  /external/opencv3/modules/core/include/opencv2/core/cuda/detail/
color_detail.hpp 498 __constant__ int c_RGB2YUVCoeffs_i[5] = { B2Y, G2Y, R2Y, 8061, 14369 };
504 const int Y = CV_DESCALE(src[0] * c_RGB2YUVCoeffs_i[bidx^2] + src[1] * c_RGB2YUVCoeffs_i[1] + src[2] * c_RGB2YUVCoeffs_i[bidx], yuv_shift);
505 const int Cr = CV_DESCALE((src[bidx^2] - Y) * c_RGB2YUVCoeffs_i[3] + delta, yuv_shift);
506 const int Cb = CV_DESCALE((src[bidx] - Y) * c_RGB2YUVCoeffs_i[4] + delta, yuv_shift);
    [all...]
  /external/opencv3/modules/imgproc/src/opencl/
cvtcolor.cl 205 __constant int c_RGB2YUVCoeffs_i[5] = { B2Y, G2Y, R2Y, 8061, 14369 };
235 __constant int * coeffs = c_RGB2YUVCoeffs_i;
    [all...]

Completed in 34 milliseconds