Home
last modified time | relevance | path

Searched refs:gammaTab (Results 1 – 2 of 2) sorted by relevance

/external/opencv3/modules/imgproc/src/opencl/
Dcvtcolor.cl1637 __global const ushort * gammaTab, __global ushort * LabCbrtTab_b,
1661 int R = gammaTab[src_pix.x], G = gammaTab[src_pix.y], B = gammaTab[src_pix.z];
1687 __global const float * gammaTab,
1717 R = splineInterpolate(R * GammaTabScale, gammaTab, GAMMA_TAB_SIZE);
1718 G = splineInterpolate(G * GammaTabScale, gammaTab, GAMMA_TAB_SIZE);
1719 B = splineInterpolate(B * GammaTabScale, gammaTab, GAMMA_TAB_SIZE);
1750 __global const float * gammaTab,
1787 ro = splineInterpolate(ro * GammaTabScale, gammaTab, GAMMA_TAB_SIZE);
1788 go = splineInterpolate(go * GammaTabScale, gammaTab, GAMMA_TAB_SIZE);
1789 bo = splineInterpolate(bo * GammaTabScale, gammaTab, GAMMA_TAB_SIZE);
[all …]
/external/opencv3/modules/imgproc/src/
Dcolor.cpp5175 const float* gammaTab = srgb ? sRGBGammaTab : 0; in operator ()() local
5189 if (gammaTab) in operator ()()
5191 R = splineInterpolate(R * gscale, gammaTab, GAMMA_TAB_SIZE); in operator ()()
5192 G = splineInterpolate(G * gscale, gammaTab, GAMMA_TAB_SIZE); in operator ()()
5193 B = splineInterpolate(B * gscale, gammaTab, GAMMA_TAB_SIZE); in operator ()()
5244 const float* gammaTab = srgb ? sRGBInvGammaTab : 0; in operator ()() local
5289 if (gammaTab) in operator ()()
5291 ro = splineInterpolate(ro * gscale, gammaTab, GAMMA_TAB_SIZE); in operator ()()
5292 go = splineInterpolate(go * gscale, gammaTab, GAMMA_TAB_SIZE); in operator ()()
5293 bo = splineInterpolate(bo * gscale, gammaTab, GAMMA_TAB_SIZE); in operator ()()
[all …]