第一范文网 - 专业文章范例文档资料分享平台

HOUGH变换MATLAB

来源:用户分享 时间:2025/5/25 12:11:42 本文由loading 分享 下载这篇文档手机版
说明:文章内容仅供预览,部分内容可能不全,需要完整文档或者需要复制内容,请下载word后使用。下载word有问题请添加微信号:xxxxxxx或QQ:xxxxxx 处理(尽可能给您提供完整文档),感谢您的支持与谅解。

I = imread('D:\\My Documents\\MATLAB\\4.bmp');

figure,imshow(I),hold on;%show the original image title('The original imaage.');

rotI = rgb2gray(I); % convert to intensity image BW = edge(rotI,'canny'); % extract edges

[H,T,R] = hough(BW,'RhoResolution',0.5,'ThetaResolution',0.5);%hough transfer

figure,imshow(H,[],'XData',T,'YData',R,'InitialMagnification','fit'),hold on;

xlabel('\\theta'), ylabel('\\rho'); axis on, axis normal,hold on;

P = houghpeaks(H,10,'threshold',ceil(0.3*max(H(:)))); x = T(P(:,2)); y = R(P(:,1)); plot(x,y,'s','color','white'); % Find lines and plot them

lines = houghlines(BW,T,R,P,'FillGap',5,'MinLength',7); figure, imshow(rotI), hold on;

title('The lines that have been found'); max_len = 0;

for k = 1:length(lines)

xy = [lines(k).point1; lines(k).point2];

plot(xy(:,1),xy(:,2),'LineWidth',2,'Color','red');

%Plot beginnings and ends of lines

%plot(xy(1,1),xy(1,2),'x','LineWidth',1,'Color','yellow'); %plot(xy(2,1),xy(2,2),'x','LineWidth',1,'Color','red');

% Determine the endpoints of the longest line segment len = norm(lines(k).point1 - lines(k).point2); if ( len > max_len) max_len = len; xy_long = xy; end end

% highlight the longest line segment

%plot(xy_long(:,1),xy_long(:,2),'LineWidth',1,'Color','cyan');

搜索更多关于: HOUGH变换MATLAB 的文档
HOUGH变换MATLAB.doc 将本文的Word文档下载到电脑,方便复制、编辑、收藏和打印
本文链接:https://www.diyifanwen.net/c38us64ybtx1jxus0i38t_1.html(转载请注明文章来源)
热门推荐
Copyright © 2012-2023 第一范文网 版权所有 免责声明 | 联系我们
声明 :本网站尊重并保护知识产权,根据《信息网络传播权保护条例》,如果我们转载的作品侵犯了您的权利,请在一个月内通知我们,我们会及时删除。
客服QQ:xxxxxx 邮箱:xxxxxx@qq.com
渝ICP备2023013149号
Top