实验-四-图像分割与边缘检测.docx
《实验-四-图像分割与边缘检测.docx》由会员分享,可在线阅读,更多相关《实验-四-图像分割与边缘检测.docx(7页珍藏版)》请在淘文阁 - 分享文档赚钱的网站上搜索。
1、精选优质文档-倾情为你奉上实验 四 图像分割与边缘检测 一实验目的及要求1利用MATLAB研究图像分割与边缘检测的常用算法原理;2掌握MATLAB图像域值分割与边缘检测函数的使用方法;3了解边缘检测的算法和用途,比较Sobel、Prewitt、Canny等算子边缘检测的差异。二、实验内容(一)研究以下程序,分析程序功能;输入执行各命令行,认真观察命令执行的结果。熟悉程序中所使用函数的调用方法,改变有关参数,观察试验结果。1图像阈值分割clear all, close all;I = imread(cameraman.tif);figure (1),imshow(I)figure(2); imh
2、ist(I)T=120/255;Ibw1 = im2bw(I,T); figure(3);subplot(1,2,1), imshow(Ibw1);T=graythresh(I); L = uint8(T*255)Ibw2 = im2bw(I,T); subplot(1,2,2), imshow(Ibw2);help im2bw;help graythresh;clear all, close all;I = imread(cameraman.tif);figure (1),imshow(I)figure(2); imhist(I)T=240/255;Ibw1 = im2bw(I,T); fi
3、gure(3);subplot(1,2,1), imshow(Ibw1);T=graythresh(I); L = uint8(T*255)Ibw2 = im2bw(I,T); subplot(1,2,2), imshow(Ibw2);help im2bw;help graythresh;clear all, close all;I = imread(cameraman.tif);figure (1),imshow(I)figure(2); imhist(I)T=120/255;Ibw1 = im2bw(I,T); figure(3);subplot(1,2,1), imshow(Ibw1);
4、T=graythresh(I); L = uint8(T*255)Ibw2 = im2bw(I,T); subplot(1,2,2), imshow(Ibw2);help im2bw;help graythresh;2边缘检测clear all, close all;I = imread(moon.tif);BW1 = edge(I,sobel);BW2 = edge(I,canny);BW3 = edge(I,prewitt);BW4 = edge(I,roberts);BW5 = edge(I,log);figure(1), imshow(I), title(Original Image)
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- 实验 图像 分割 边缘 检测
限制150内