Home
last modified time | relevance | path

Searched refs:Lscale (Results 1 – 5 of 5) sorted by relevance

/external/opencv3/modules/imgproc/test/
Dtest_color.cpp1020 float Lscale = depth == CV_8U ? 255.f/100.f : depth == CV_16U ? 65535.f/100.f : 1.f; in convert_row_bgr2abc_32f_c3() local
1056 dst_row[x] = L * Lscale; in convert_row_bgr2abc_32f_c3()
1065 float Lscale = depth == CV_8U ? 100.f/255.f : depth == CV_16U ? 100.f/65535.f : 1.f; in convert_row_abc2bgr_32f_c3() local
1076 float L = src_row[x] * Lscale; in convert_row_abc2bgr_32f_c3()
1157 float Lscale = depth == CV_8U ? 255.f/100.f : depth == CV_16U ? 65535.f/100.f : 1.f; in convert_row_bgr2abc_32f_c3() local
1201 dst_row[j] = L*Lscale; in convert_row_bgr2abc_32f_c3()
1211 float Lscale = depth == CV_8U ? 100.f/255.f : depth == CV_16U ? 100.f/65535.f : 1.f; in convert_row_abc2bgr_32f_c3() local
1232 float L = src_row[j]*Lscale; in convert_row_abc2bgr_32f_c3()
/external/opencv3/modules/cudev/include/opencv2/cudev/functional/detail/
Dcolor_cvt.hpp963 const int Lscale = (116 * 255 + 50) / 100; in operator ()() local
987 int L = CV_CUDEV_DESCALE(Lscale * fY + Lshift, lab_shift2); in operator ()()
/external/opencv3/modules/core/include/opencv2/core/cuda/detail/
Dcolor_detail.hpp1541 const int Lscale = (116 * 255 + 50) / 100; in RGB2LabConvert_b() local
1565 int L = CV_DESCALE(Lscale * fY + Lshift, lab_shift2); in RGB2LabConvert_b()
/external/opencv3/modules/imgproc/src/opencl/
Dcvtcolor.cl1638 __constant int * coeffs, int Lscale, int Lshift)
1666 int L = CV_DESCALE( Lscale*fY + Lshift, lab_shift2 );
/external/opencv3/modules/imgproc/src/
Dcolor.cpp5106 const int Lscale = (116*255+50)/100; in operator ()() local
5122 int L = CV_DESCALE( Lscale*fY + Lshift, lab_shift2 ); in operator ()()
7174 const int Lscale = (116*255+50)/100; in ocl_cvtColor() local
7180 Lscale, Lshift); in ocl_cvtColor()