• 大小: 882B
    文件类型: .m
    金币: 1
    下载: 0 次
    发布日期: 2021-06-07
  • 语言: Matlab
  • 标签: 检测直线  

资源简介

radon变换检测图像中的直线能够通过扫描测量的平均值求整个衰减系数的分布

资源截图

代码片段和文件信息

rgb=imread(‘gantrycrane.png‘);
 i=rgb2gray(rgb);
 bw=edge(i‘sobel‘);
 figure(1)imshow(rgb);figure(2)imshow(i);figure(3)imshow(bw);
 theta_step=1;
 theta=0:theta_step:360;
 [rxp]=radon(bwtheta);
 figure(4)imagesc(thetaxpr);colormap(hot);
 xlabel(‘theta(degrees)‘);ylabel(‘x\prime‘);
title(‘r_{theta}(x\prime)‘);
colorbar;
 max_r=max(max(r));
threshold=0.75;
[IIJJ]=find(r>=(max_r*threshold));
[nd]=size(II);
figure(5

评论

共有 条评论