- 1、本文档共6页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
实验三图像形态学处理一.实验目的及要求1.利用MATLAB研究二值形态学图像处理常用算法;2.掌握MATLAB形态学图像处理基本操作函数的使用方法;3.了了解形态学的基本应用。二、实验内容(一)研究以下程序,分析程序功能;输入执行各命令行,认真观察命令执行的结果。熟悉程序中所使用函数的调用方法,改变有关参数,观察试验结果。1.膨胀与腐蚀(Dilation and Erosion)(1)对简单二值图像进行膨胀与腐蚀clear all, close allBW = zeros(9,10); BW(4:6,4:7) = 1;BWSE = strel(square,3) BW1 = imdilate(BW,SE)BW2 = imerode (BW,SE)figure(1),subplot(1,2,1), imshow(BW), title( Original Image );subplot(1,2,2), imshow(BW1), title( Dilated Image );figure(2),subplot(1,2,1), imshow(BW), title( Original Image );subplot(1,2,2), imshow(BW2), title( Eroded Image );修改参数:clear all, close allBW = zeros(9,10); BW(4:8,4:8) = 1;BWSE = strel(square,3) BW1 = imdilate(BW,SE)BW2 = imerode (BW,SE)figure(1),subplot(1,2,1), imshow(BW), title( Original Image );subplot(1,2,2), imshow(BW1), title( Dilated Image );figure(2),subplot(1,2,1), imshow(BW), title( Original Image );subplot(1,2,2), imshow(BW2), title( Eroded Image );(2)对文本图像进行膨胀与腐蚀clear all, close allI = imread(C:\Users\Administrator\Desktop\broken_text.tif);SE = [0,1,0;1,1,1;0,1,0]BW1 = imdilate(I, SE);BW2 = imerode (I, SE);figure(1),subplot(1,2,1), imshow(I), title( Original Image );subplot(1,2,2), imshow(BW1), title( Dilated Image );figure(2),subplot(1,2,1), imshow(I), title( Original Image );subplot(1,2,2), imshow(BW2) , title( Eroded Image );修改参数:clear all, close allI = imread(C:\Users\Administrator\Desktop\broken_text.tif);SE = [0,0,0;0,0,0;0,0,0]BW1 = imdilate(I, SE);BW2 = imerode (I, SE);figure(1),subplot(1,2,1), imshow(I), title( Original Image );subplot(1,2,2), imshow(BW1), title( Dilated Image );figure(2),subplot(1,2,1), imshow(I), title( Original Image );subplot(1,2,2), imshow(BW2) , title( Eroded Image );2. 开、闭运算(Open and Close)clear all, close allI = imread(cameraman.tif);bw = ~im2bw(I,graythresh(I));se = strel(disk,5);bw2 = imopen(bw,se);subplot(1,2,1), imshow(bw), title(Thresholded Image)subplot(1,2,2), imshow(bw2), title(After opening)bw3 = imclose(bw,se);figure;subplot(1,2,1), imshow(bw), title(Thresholded Image)su
文档评论(0)