Searched refs:splineInterpolate (Results 1 - 4 of 4) sorted by relevance

/external/opencv3/modules/imgproc/src/opencl/
H A Dcvtcolor.cl1625 inline float splineInterpolate(float x, __global const float * tab, int n)
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);
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);
1931 R = splineInterpolate(R*GammaTabScale, gammaTab, GAMMA_TAB_SIZE);
1932 G = splineInterpolate(G*GammaTabScale, gammaTab, GAMMA_TAB_SIZE);
1933 B = splineInterpolate(
[all...]
/external/opencv3/modules/cudev/include/opencv2/cudev/functional/detail/
H A Dcolor_cvt.hpp948 __device__ static float splineInterpolate(float x, const float* tab, int n)
1015 B = splineInterpolate(B * GAMMA_TAB_SIZE, c_sRGBGammaTab, GAMMA_TAB_SIZE);
1016 G = splineInterpolate(G * GAMMA_TAB_SIZE, c_sRGBGammaTab, GAMMA_TAB_SIZE);
1017 R = splineInterpolate(R * GAMMA_TAB_SIZE, c_sRGBGammaTab, GAMMA_TAB_SIZE);
1088 B = splineInterpolate(B * GAMMA_TAB_SIZE, c_sRGBInvGammaTab, GAMMA_TAB_SIZE);
1089 G = splineInterpolate(G * GAMMA_TAB_SIZE, c_sRGBInvGammaTab, GAMMA_TAB_SIZE);
1090 R = splineInterpolate(R * GAMMA_TAB_SIZE, c_sRGBInvGammaTab, GAMMA_TAB_SIZE);
1150 B = splineInterpolate(B * GAMMA_TAB_SIZE, c_sRGBGammaTab, GAMMA_TAB_SIZE);
1151 G = splineInterpolate(G * GAMMA_TAB_SIZE, c_sRGBGammaTab, GAMMA_TAB_SIZE);
1152 R = splineInterpolate(
[all...]
/external/opencv3/modules/core/include/opencv2/core/cuda/detail/
H A Dcolor_detail.hpp1574 __device__ __forceinline__ float splineInterpolate(float x, const float* tab, int n) function in namespace:cv::cuda::device::color_detail
1596 B = splineInterpolate(B * GAMMA_TAB_SIZE, c_sRGBGammaTab, GAMMA_TAB_SIZE);
1597 G = splineInterpolate(G * GAMMA_TAB_SIZE, c_sRGBGammaTab, GAMMA_TAB_SIZE);
1598 R = splineInterpolate(R * GAMMA_TAB_SIZE, c_sRGBGammaTab, GAMMA_TAB_SIZE);
1703 B = splineInterpolate(B * GAMMA_TAB_SIZE, c_sRGBInvGammaTab, GAMMA_TAB_SIZE);
1704 G = splineInterpolate(G * GAMMA_TAB_SIZE, c_sRGBInvGammaTab, GAMMA_TAB_SIZE);
1705 R = splineInterpolate(R * GAMMA_TAB_SIZE, c_sRGBInvGammaTab, GAMMA_TAB_SIZE);
1793 B = splineInterpolate(B * GAMMA_TAB_SIZE, c_sRGBGammaTab, GAMMA_TAB_SIZE);
1794 G = splineInterpolate(G * GAMMA_TAB_SIZE, c_sRGBGammaTab, GAMMA_TAB_SIZE);
1795 R = splineInterpolate(
[all...]
/external/opencv3/modules/imgproc/src/
H A Dcolor.cpp135 template<typename _Tp> static inline _Tp splineInterpolate(_Tp x, const _Tp* tab, int n) function in namespace:cv
5191 R = splineInterpolate(R * gscale, gammaTab, GAMMA_TAB_SIZE);
5192 G = splineInterpolate(G * gscale, gammaTab, GAMMA_TAB_SIZE);
5193 B = splineInterpolate(B * gscale, gammaTab, GAMMA_TAB_SIZE);
5291 ro = splineInterpolate(ro * gscale, gammaTab, GAMMA_TAB_SIZE);
5292 go = splineInterpolate(go * gscale, gammaTab, GAMMA_TAB_SIZE);
5293 bo = splineInterpolate(bo * gscale, gammaTab, GAMMA_TAB_SIZE);
5567 R = splineInterpolate(R*gscale, gammaTab, GAMMA_TAB_SIZE);
5568 G = splineInterpolate(G*gscale, gammaTab, GAMMA_TAB_SIZE);
5569 B = splineInterpolate(
[all...]

Completed in 198 milliseconds