欢迎来到天天文库
浏览记录
ID:1329539
大小:340.00 KB
页数:12页
时间:2017-11-10
《数字图像处理命令文件》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、悬赏分:5
2、 解决时间:2007-11-2115:01
3、 提问者:218liubing用matlab实现的二值图像的数学形态学变换最佳答案1、dilate函数该函数能够实现二值图像的膨胀操作,有以下形式:BW2=dilate(BW1,SE)BW2=dilate(BW1,SE,…,n)其中:BW2=dilate(BW1,SE)表示使用二值结构要素矩阵SE队图像数据矩阵BW1执行膨胀操作。输入图像BW1的类型为double或unit8,输出图像BW2的类型为unit8。BW2=dilate(BW1,SE,…,n)表示执行膨胀操作n次。2、erode
4、函数该函数能够实现二值图像的腐蚀操作,有以下形式:BW2=erode(BW1,SE)BW2=erode(BW1,SE,…,n)其中:BW2=erode(BW1,SE)表示使用二值结构要素矩阵SE队图像数据矩阵BW1执行腐蚀操作。输入图像BW1的类型为double或unit8,输出图像BW2的类型为unit8。BW2=erode(BW1,SE,…,n)表示执行腐蚀操作n次。3、bwmorph函数该函数的功能是能实现二值图像形态学运算。它的格式如下:①BW2=bwmorph(BW1,operation)②BW2=bwmorph(BW1,operatio
5、n,n)其中:对于格式①,bwmorph函数可对二值图像BW1采用指定的形态学运算;对于格式②,bwmorph函数可对二值图像BW1采用指定的形态学运算n次。operation为下列字符串之一:‘clean’:除去孤立的像素(被0包围的1)‘close’:计算二值闭合‘dilate’:用结构元素计算图像膨胀‘erode’:用结构元素计算图像侵蚀4、imclose函数该函数功能是对灰度图像执行形态学闭运算,即使用同样的结构元素先对图像进行膨胀操作后进行腐蚀操作。调用格式为:IM2=imclose(IM,SE)IM2=imclose(IM,NHOOD)
6、5、imopen函数该函数功能是对灰度图像执行形态学开运算,即使用同样的结构元素先对图像进行腐蚀操作后进行膨胀操作。调用格式为:IM2=imopen(IM,SE)IM2=imopen(IM,NHOOD)helpstrelSTRELCreatemorphologicalstructuringelement.SE=STREL('arbitrary',NHOOD)createsaflatstructuringelementwiththespecifiedneigbhorhood.NHOODisamatrixcontaining1'sand0's;thel
7、ocationofthe1'sdefinestheneighborhoodforthemorphologicaloperation.Thecenter(ororigin)ofNHOODisitscenterelement,givenbyFLOOR((SIZE(NHOOD)+1)/2).Youcanalsoomitthe'arbitrary'stringandjustuseSTREL(NHOOD).SE=STREL('arbitrary',NHOOD,HEIGHT)createsanonflatstructuringelementwiththespe
8、cifiedneighborhood.HEIGHTisamatrixthesamesizeasNHOODcontainingtheheightvaluesassociatedwitheachnonzeroelementofNHOOD.HEIGHTmustberealandfinite-valued.Youcanalsoomitthe'arbitrary'stringandjustuseSTREL(NHOOD,HEIGHT).SE=STREL('ball',R,H,N)createsanonflat"ball-shaped"(actuallyanel
9、lipsoid)structuringelementwhoseradiusintheX-YplaneisRandwhoseheightisH.Rmustbeanonnegativeinteger,andHmustbearealscalar.Nmustbeanevennonnegativeinteger.WhenNisgreaterthan0,theball-shapedstructuringelementisapproximatedbyasequenceofNnonflatline-shapedstructuringelements.WhenNis
10、0,noapproximationisused,andthestructuringelementmemberscompri
此文档下载收益归作者所有