资源简介
本人毕业设计所选的canny算子matlab源代码,绝对可用,第一次上传,选最好的
代码片段和文件信息
function result=canny(IszT1T2)
% perform canny edge detector. I is the input image sz indicates the size
% of gaussian T1 is the lower threshold and T2 is the upper threshold.
% smooth the image with a gaussian filter
h=fspecial(‘gaussian‘szsz/6);
I=imfilter(Ih‘replicate‘);
I=double(I);
% choose priwitt to compute the gradient magnitude image g(xy)
GX=[-1 -1 -1; 0 0 0; 1 1 1] ;% Gx
GY=[-1 0 1;-1 0 1; -1 0 1]; % Gy
I1=imfilter(IGX‘replicate‘);
I2=imfilter(IGY‘replicate‘);
g=sqrt(I1.^2+I2.^2);
[xy]=size(I); % get the size of I.
% compute the edge direction image theta(xy)
theta=zeros(xy);
for i=1:x
for j=1:y
if(I1(ij)==0 && I2(ij)==0) % if both Gx and Gy are equal to 0 set the direction to be 0
theta(ij)=0;
else
theta(ij)=atan(I2(ij)./I1(ij))*180/3.1415926; % get the direction in degrees.
end
% set the direction‘s range to be [0360]
if(I1(ij)>=0&&I2(ij)<0)
theta(ij)=theta(ij)+360;
elseif(I1(ij)<0&&I2(ij)>=0)
theta(ij)=theta(ij)+180;
elseif(I1(ij)<0&&I2(ij)<0)
theta(ij)=theta(ij)+180;
end
end
end
% quantize the angle to the nearest angle:{04590135180225270315360}
angle=(0:8)*45;
for i=1:x
for j=1:y
for k=1:9
if(abs(theta(ij)-angle(k))<=45/2)
theta(ij)=angle(k);
end
end
end
end
% call localmax function to perform the nonmaximal supression
G=localmax(gtheta);
G=uint8(G);
G(find(G>T2*max(G(:))))=255; % change the pixels above upper threshold to be edges.
G
- 上一篇:在Matlab上实现自相关和互相关函数
- 下一篇:最近邻域分类法matlab实现
相关资源
- 蚁群算法论文+源代码
- MATLAB电机仿真精华50例源代码.zip
- MATLAB电机仿真精华50例源代码269078
- BP神经网络解决手写数字识别问题 m
- MATLAB烟花算法源代码
- MATLAB R2007基础教程刘慧颖 编著--源代
-
瑞利信道simuli
nk仿真模型及源代码 - 数字识别matlab源代码
- 多种群遗传算法的函数优化算法(源
- MATLAB GUI设计学习手记第3版源代码BY罗
- MATLAB GUI设计学习手记 第3版 源代码
- Split bregman 算法MATLAB源代码
- matlab 图像傅里叶变换 (源代码)
- MATLAB电机仿真精华50例源代码
- 《MATLAB电机仿真精华50例》源代码
- 数字图像处理作业canny边缘检测坎尼边
- 字符识别matlab源代码
- matlab身份证号码识别毕业设计答辩演
- mtsp源代码MATLAB
- matlab纹理特征提取源代码
- 中央大学 EMD HHT Matlab 源代码
- MATLAB神经网络43个案例分析源代码
- MATLAB智能算法30个案例分析 源代码.
- 图像超分辨重建MATLAB源代码迭代步长
- 基于品质因数的边缘检测算子性能优
- 《MATLAB 神经网络30个案例分析》所有
- 麦克风阵列仿真的源代码
- 基于matlab的模糊边缘检测
- 深度学习和matlab源代码
- 计算流体力学各种程序
评论
共有 条评论