资源简介
matlab环境下改进sobel算子,在原有两个模板的基础上又增加了两个方向模板
代码片段和文件信息
>> f=imread(‘C:\Users\Administrator\Desktop\syd.bmp‘);
>> f=rgb2gray(f);
>> f=im2double(f);
>> figureimshow(f)title(‘原始图像‘);
>> [SFST Threshold] =edge(f‘sobel‘‘horizontal‘);
>> figureimshow(SFST)title(‘ 水平图像边缘检测‘);
>> [VSFAT Threshold]=edge(f‘sobel‘‘vertical‘);
>> figureimshow(VSFAT)title(‘垂直图像边缘检测‘)
评论
共有 条评论