Matlab实现霍夫变换 霍夫变换matlab代码

本代码提供了matlab下求取经过霍夫变换的直线斜率,并将其联合,代码见下方,实验结果见文末。

  1. %入口图像为BW,出口图像为f
  2. %optimizefrommain_optimize,merelyselect2lines,onehaspositive
  3. %slope,theotherhasnegativeslope
  4. clearall,closeall
  5. BW=imread('D:ImagesNEWimg4b9faef664e03.jpg');
  6. figure,imshow(BW);
  7. BW=rgb2gray(BW);
  8. %thresh=[0.01,0.17];
  9. thresh=[0.01,0.10];
  10. sigma=2;%定义高斯参数
  11. f=edge(double(BW),'canny',thresh,sigma);
  12. figure,subplot(121);
  13. imshow(f,[]);
  14. title('cannyEdgeDetectResult');
  15. [H,theta,rho]=hough(f,0.1);%cos(theta)*x+sin(theta)*y=rho
  16. %imshow(theta,rho,H,[],'notruesize'),axison,axisnormal
  17. %xlabel('theta'),ylabel('rho');
  18. [r,c]=houghpeaks(H,10);
  19. holdon
  20. lines=houghlines(f,theta,rho,r,c);
  21. subplot(122);
  22. imshow(f,[]),title('HoughTransformDetectResult'),holdon
  23. nlind=0;%newlineindex
  24. st=1;
  25. %%%%%%%%%求斜率%%%%%%%%%%%%
  26. fork=1:length(lines)
  27. %xy=[lines(k).point1;lines(k).point2];
  28. xielv(k)=(lines(k).point2(1)-lines(k).point1(1))/(lines(k).point2(2)-lines(k).point1(2)+0.0001)
  29. end
  30. %%%%%%%%%将相同斜率的直线连起来%%%%%%%%%%%%
  31. k=1;
  32. while(k<=length(lines))
  33. if(k~=length(lines))
  34. k=k+1;
  35. end
  36. while(abs(xielv(k)-xielv(k-1))<0.0001)
  37. k=k+1;
  38. if(k>length(lines))
  39. break;
  40. end
  41. end
  42. if(abs(xielv(k-1))<0.05||abs(xielv(k-1))>=10)%eliminatehorizontalandverticallines,防治水平线和楼房
  43. st=k;
  44. if(k~=length(lines))
  45. continue;
  46. end
  47. end
  48. if(st==length(lines)&&k==st)
  49. if(abs(xielv(k))>0.05&&abs(xielv(k))<10)
  50. nlind=nlind+1;
  51. newlines(nlind)=lines(st);
  52. newlines(nlind).point2=lines(k).point2;
  53. newxy=[newlines(nlind).point1;newlines(nlind).point2];
  54. plot(newxy(:,2),newxy(:,1),'LineWidth',4,'Color',[.61.0.8]);
  55. end
  56. break;
  57. end
  58. %end=k-1,start=st;drawline
  59. nlind=nlind+1;
  60. newlines(nlind)=lines(st);
  61. newlines(nlind).point2=lines(k-1).point2;
  62. newxy=[newlines(nlind).point1;newlines(nlind).point2];
  63. plot(newxy(:,2),newxy(:,1),'LineWidth',4,'Color',[.61.0.8]);
  64. st=k;
  65. end
  66. fprintf('%dlinesaredetectedinsum.n',nlind);
% 入口图像为 BW,出口图像为f%optimize from main_optimize, merely select 2 lines, one has positive%slope,the other has negative slopeclear all,close allBW=imread('D:ImagesNEWimg4b9faef664e03.jpg');figure,imshow(BW);BW=rgb2gray(BW);%thresh=[0.01,0.17];thresh=[0.01,0.10];sigma=2;%定义高斯参数f = edge(double(BW),'canny',thresh,sigma);figure,subplot(121);imshow(f,[]);title('canny Edge Detect Result');[H, theta, rho]= hough(f, 0.1);%cos(theta)*x+sin(theta)*y=rho%imshow(theta,rho,H,[],'notruesize'),axis on,axis normal%xlabel('theta'),ylabel('rho');[r,c]=houghpeaks(H,10);hold onlines=houghlines(f,theta,rho,r,c);subplot(122);imshow(f,[]),title('Hough Transform Detect Result'),hold onnlind=0;%new line indexst=1;%%%%%%%%%求斜率%%%%%%%%%%%%for k=1:length(lines)    %xy=[lines(k).point1;lines(k).point2];    xielv(k)=(lines(k).point2(1)-lines(k).point1(1))/(lines(k).point2(2)-lines(k).point1(2)+0.0001)end%%%%%%%%%将相同斜率的直线连起来%%%%%%%%%%%%k=1;while(k<=length(lines))    if(k~=length(lines))        k=k+1;    end    while(abs(xielv(k)-xielv(k-1))<0.0001)        k=k+1;        if(k>length(lines))            break;        end    end    if(abs(xielv(k-1))<0.05||abs(xielv(k-1))>=10)%eliminate horizontal and vertical lines,防治水平线和楼房        st=k;        if(k~=length(lines))            continue;        end    end        if(st==length(lines)&&k==st)        if(abs(xielv(k))>0.05&&abs(xielv(k))<10)            nlind=nlind+1;            newlines(nlind)=lines(st);            newlines(nlind).point2=lines(k).point2;            newxy=[newlines(nlind).point1;newlines(nlind).point2];            plot(newxy(:,2),newxy(:,1),'LineWidth',4,'Color',[.6 1.0 .8]);        end        break;    end    %end=k-1,start=st; draw line    nlind=nlind+1;    newlines(nlind)=lines(st);    newlines(nlind).point2=lines(k-1).point2;    newxy=[newlines(nlind).point1;newlines(nlind).point2];    plot(newxy(:,2),newxy(:,1),'LineWidth',4,'Color',[.6 1.0 .8]);    st=k;endfprintf('%d lines are detected in sum.n',nlind);


Matlab实现霍夫变换 霍夫变换matlab代码

实验结果:

原图:

未优化的霍夫变换:

优化后:

转自 : http://blog.csdn.net/abcjennifer/article/details/6674572

************************************另一版本******************************

总结如下:
(1)对图片预处理,这里必须说明的是,纯种的Hough变换只适应黑白图片,换句话说,在使用它之前,你已经提取出该图片的边缘了。
(2) 找到图片中的“黑点”也就是要处理的边缘,假设其在直角坐标系的下标为(x,y),对其进行坐标变换ρ=x*cosθ+y*sinθ,其中0<θ<2*pi。当然,在实际的操作中,θ要转变为离散的数组θ1、θ2……θj,ρ也就是相应的有ρ1、ρ2……ρj。
(3) 判断(ρj, θj)与哪个数组元素对应,并让该数组元素加1。
(4) 比较数组元素值的大小,最大值对应的(ρj, θj)就是这些共线点对应的直线方程的参数。共线方程为
ρj = xcosθj + ysinθj

在matlab中,使用hough、houghpeaks和houghlines可以简单的检测到直线。例子如下。
I = imread('test12.bmp');%读入示例图片%
Imshow(I);%显示示例图片%

Img =edge(I,'prewitt');%利用prewitt算子提取边缘%
Imshow(Img);%显示提取边缘的图片%

[H, T, R] =hough(Img);%hough变换%
imshow(sqrt(H),[]);%hough变换的结果%
P = houghpeaks(H, 15, 'threshold', ceil(0.3*max(H(:))));
%寻找最大点%
lines = houghlines(Img, T, R, P,'FillGap',10,'MinLength',20);
%返回找到的直线%
figure, imshow(I), hold on
max_len = 0;
for k = 1:length(lines)
xy = [lines(k).point1; lines(k).point2];
plot(xy(:,1),xy(:,2),'LineWidth',2,'Color','green');
plot(xy(1,1),xy(1,2),'x','LineWidth',2,'Color','yellow');
plot(xy(2,1),xy(2,2),'x','LineWidth',2,'Color','red');
end

  

爱华网本文地址 » http://www.aihuau.com/a/25101010/17549.html

更多阅读

Matlab实现霍夫变换 霍夫变换matlab代码

本代码提供了matlab下求取经过霍夫变换的直线斜率,并将其联合,代码见下方,实验结果见文末。%入口图像为BW,出口图像为f%optimizefrommain_optimize,merelyselect2lines,onehaspositive%slope,theotherhasnegativeslopeclearall,clo

小李飞刀--比埃尔霍夫我们曾经拥有 重生在小李飞刀

在昔年一个充满了暴力邪恶动乱的时代里,江湖中突然有一种飞刀出现了。没有人知道它的形状和式样,也没有人能够形容它的力量和速度。这就是“小李飞刀”。在今日动荡不安的欧洲足坛,也突然出现了这样一位前锋。他的传奇故事就像童话中的

防盗链技术终极解决方案_computer 终极定制学习解决方案

防盗链技术现状: 1、通过识别Referer确认请求来源页面 2、Apache,squid等都能对Referer进行识别 3、通过ActiveX显示的内容不向服务器提供Referer Header(例如,Flash,WindowsMedia视频等) 4、流媒体的RTSP协议也不向服务器提供Referer Hea

霍兰德职业代码社会类型12种 霍兰德职业兴趣类型

SEC:社会活动家、退伍军人服务官员、工商会事务代表、教育咨询者、宿舍管理员、旅馆经理、饮食服务管理员。SER:体育教练、游泳指导。SEI:大学校长、学院院长、医院行政管理员、历史学家、家政经济学家、职业学校教师、资料员。SEA:

声明:《Matlab实现霍夫变换 霍夫变换matlab代码》为网友长命无绝衰分享!如侵犯到您的合法权益请联系我们删除