我正在尝试为我的特定研究问题实现广义Hough变换。
我试图将参考图像中的点的旋转和缩放包括到rtable
(从模板图像获得的参考表)中。我的问题是reference table (Rtable)
的数据结构应该如何用于此目的?在this paper的第5页中,作者提到了{4}表Rtable
(++(P[xc][yc][θ][s])
)。以下显示了算法:
如果我有模板图像的点的缩放系数和旋转度,如下所示:
rf=[i*math.degrees(math.pi/4) for i in range(0,8)] #rotation factor
sf=[0.5,0.75,0.85,1,1.25,1.5,1.75,1.95] #scaling factor
theta (perpendicular to gradient's direction) and r (distance from the center point of object)
的二维数组,然后旋转并缩放点并重新计算它们相对于中心的坐标,并将它们包含在Rtable
?请专家帮我理解一下吗?