Home
last modified time | relevance | path

Searched refs:tg22x (Results 1 – 3 of 3) sorted by relevance

/external/opencv/cv/src/
Dcvcanny.cpp244 int tg22x = x * TG22; in cvCanny() local
245 int tg67x = tg22x + ((x + x) << CANNY_SHIFT); in cvCanny()
249 if( y < tg22x ) in cvCanny()
/external/opencv3/modules/imgproc/src/
Dcanny.cpp483 int tg22x = x * TG22; in operator ()() local
485 if (y < tg22x) in operator ()()
491 int tg67x = tg22x + (x << (CANNY_SHIFT+1)); in operator ()()
886 int tg22x = x * TG22; in Canny() local
888 if (y < tg22x) in Canny()
894 int tg67x = tg22x + (x << (CANNY_SHIFT+1)); in Canny()
/external/opencv3/modules/cudaimgproc/src/cuda/
Dcanny.cu196 const int tg22x = dxVal * TG22; in calcMapKernel() local
197 const int tg67x = tg22x + ((dxVal + dxVal) << CANNY_SHIFT); in calcMapKernel()
201 if (dyVal < tg22x) in calcMapKernel()