Home
last modified time | relevance | path

Searched refs:hdiv_table (Results 1 – 4 of 4) sorted by relevance

/external/opencv3/modules/core/include/opencv2/core/cuda/detail/
Dcolor_detail.hpp952 const int* hdiv_table = hr == 180 ? c_HsvDivTable180 : c_HsvDivTable256; in RGB2HSVConvert() local
970 h = (h * hdiv_table[diff] + (1 << (hsv_shift-1))) >> hsv_shift; in RGB2HSVConvert()
981 const int* hdiv_table = hr == 180 ? c_HsvDivTable180 : c_HsvDivTable256; in RGB2HSVConvert() local
1002 h = (h * hdiv_table[diff] + (1 << (hsv_shift-1))) >> hsv_shift; in RGB2HSVConvert()
/external/opencv3/modules/cudev/include/opencv2/cudev/functional/detail/
Dcolor_cvt.hpp619 const int* hdiv_table = hr == 180 ? c_HsvDivTable180 : c_HsvDivTable256; in operator ()() local
640 h = (h * hdiv_table[diff] + (1 << (hsv_shift-1))) >> hsv_shift; in operator ()()
/external/opencv3/modules/imgproc/src/opencl/
Dcvtcolor.cl1036 __constant int * sdiv_table, __constant int * hdiv_table)
1070 h = mad24(h, hdiv_table[diff], (1 << (hsv_shift-1))) >> hsv_shift;
/external/opencv3/modules/imgproc/src/
Dcolor.cpp4141 const int* hdiv_table = hr == 180 ? hdiv_table180 : hdiv_table256; in operator ()() local
4175 h = (h * hdiv_table[diff] + (1 << (hsv_shift-1))) >> hsv_shift; in operator ()()
7045 … int * const hdiv_table = hrange == 180 ? hdiv_table180 : hdiv_table256, hsv_shift = 12; in ocl_cvtColor() local
7060 hdiv_table[i] = saturate_cast<int>(v/(6.*i)); in ocl_cvtColor()
7062 Mat(1, 256, CV_32SC1, hdiv_table).copyTo(hdiv_data); in ocl_cvtColor()