Image Hough transformation
[HM, rho, th] = imhough(S)
Source Image
Hough Matrix
Distance from center to the point
Angle from the center to the point
Applies Hough transformation to an image.
S = imread(fullpath(getIPCVpath() + "/images/2lines.png")); [HM, rho, th] = imhough(S); scf();Sgrayplot(th,rho,HM',strf="021"); xset("colormap",hot(64))