2017-04-22 32 views
0
hough_in = bwareaopen(bin_im(:,:,n),20);  
% Compute the Hough transform of the image using the hough function 
[H,T,R] = hough(hough_in); 
P = houghpeaks(H,3,'threshold',ceil(0.3*max(H(:)))); 
x = T(P(:,2)); 
y = R(P(:,1)); 
lines = houghlines(hough_in,T,R,P,'FillGap',5,'MinLength',7); 

xy這裏代表什麼?Hough變換源代碼說明

回答