2017-04-22 2 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 변형 소스 코드 설명

답변