霍夫变换的这一部分对我来说很难。
为什么要进行 16 位(和 15 位)移位操作,并想知道“-sin”是什么意思。
原始代码:https ://github.com/opencv/opencv/blob/master/modules/imgproc/src/hough.cpp
a = -ttab[max_n*2+1];
b = ttab[max_n*2];
x0 = j;
y0 = i;
if( fabs(a) > fabs(b) )
{
xflag = 1;
dx0 = a > 0 ? 1 : -1;
dy0 = cvRound( b*(1 << shift)/fabs(a) );
y0 = (y0 << shift) + (1 << (shift-1));
}
else
{
xflag = 0;
dy0 = b > 0 ? 1 : -1;
dx0 = cvRound( a*(1 << shift)/fabs(b) );
x0 = (x0 << shift) + (1 << (shift-1));
}