资源简介
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
- 上一篇:合成记录Matlab代码
- 下一篇:水果智能分类系统模式识别
评论
共有 条评论