• 大小:
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-06-26
  • 语言: Matlab
  • 标签: matlab  图像处理  

资源简介

《精通matlab数字图像处理与识别》一书的代码

资源截图

代码片段和文件信息

I = imread(‘../erode_dilate.bmp‘); %读入8位灰度图像
%二值形态学处理中将灰度图像中所有非0值都看作是1,即前景物体

figure imshow(I); %得到图10.6(a)
se = strel(‘square‘ 3) %3*3的正方形结构元素
Ib= imerode(I se); %腐蚀
figure imshow(Ib); %得到图10.6(b)
se = strel([0 1 0; 1 1 1; 0 1 0]) %3*3的十字结构元素
Ic= imerode(I se); %腐蚀
figure imshow(Ic); %得到图10.6(c)
se = strel(‘square‘ 5) ;%5*5的正方形结构元素
Id= imerode(I se); %腐蚀
figure imshow(Id); %得到图10.6(d)
se = strel(‘square‘ 6); %6*6的正方形结构元素
Ie= imerode(I se); %腐蚀
figure imshow(Ie); %得到图10.6(e)
se = strel(‘square‘ 7) ;%7*7的正方形结构元素
If= imerode(I se); %腐蚀
figure imshow(If); %得到图10.6(f)

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       4334  2011-10-09 00:00  精通matlab数字图像处理与识别\chapter10\bw_bacteria.bmp

     文件        707  2011-10-11 09:12  精通matlab数字图像处理与识别\chapter10\Code\ex10_1.m

     文件        308  2004-01-01 16:12  精通matlab数字图像处理与识别\chapter10\Code\ex10_10.m

     文件        946  2004-01-01 16:16  精通matlab数字图像处理与识别\chapter10\Code\ex10_11.m

     文件        623  2011-10-11 09:23  精通matlab数字图像处理与识别\chapter10\Code\ex10_2.m

     文件        558  2011-10-11 09:26  精通matlab数字图像处理与识别\chapter10\Code\ex10_3.m

     文件        263  2011-10-11 09:28  精通matlab数字图像处理与识别\chapter10\Code\ex10_4.m

     文件       1035  2011-10-11 12:56  精通matlab数字图像处理与识别\chapter10\Code\ex10_5.m

     文件        369  2011-10-11 12:58  精通matlab数字图像处理与识别\chapter10\Code\ex10_6.m

     文件        558  2011-10-11 13:40  精通matlab数字图像处理与识别\chapter10\Code\ex10_8.m

     文件        549  2011-10-11 13:41  精通matlab数字图像处理与识别\chapter10\Code\ex10_9.m

     文件       1031  2011-10-09 00:00  精通matlab数字图像处理与识别\chapter10\Code\locateMouth.m

     文件       4878  2011-10-09 00:00  精通matlab数字图像处理与识别\chapter10\erode_dilate.bmp

     文件     117610  2011-10-09 00:00  精通matlab数字图像处理与识别\chapter10\head_portrait.bmp

     文件      66616  2011-10-09 00:00  精通matlab数字图像处理与识别\chapter10\lena.bmp

     文件       3510  2011-10-09 00:00  精通matlab数字图像处理与识别\chapter10\mouth.bmp

     文件     121078  2011-10-09 00:00  精通matlab数字图像处理与识别\chapter10\starcraft.bmp

     文件      91078  2011-10-09 00:00  精通matlab数字图像处理与识别\chapter10\Tools\morphSimulator\bg.bmp

     文件        837  2011-10-09 00:00  精通matlab数字图像处理与识别\chapter10\Tools\morphSimulator\help.txt

     文件      98304  2011-10-09 00:00  精通matlab数字图像处理与识别\chapter10\Tools\morphSimulator\MorphSimulator.exe

     文件        439  2004-01-05 10:57  精通matlab数字图像处理与识别\chapter11\code\autoThreshold.m

     文件        693  2013-11-12 10:28  精通matlab数字图像处理与识别\chapter11\code\ex11_1.m

     文件       1481  2013-11-12 10:56  精通matlab数字图像处理与识别\chapter11\code\ex11_2.m

     文件        431  2004-01-05 12:36  精通matlab数字图像处理与识别\chapter11\code\ex11_3.m

     文件        759  2004-01-05 12:39  精通matlab数字图像处理与识别\chapter11\code\ex11_4.m

     文件       1934  2004-01-05 10:57  精通matlab数字图像处理与识别\chapter11\code\regionGrow.m

     文件      78634  2004-01-05 11:21  精通matlab数字图像处理与识别\chapter11\line.bmp

     文件       3510  2011-10-03 09:09  精通matlab数字图像处理与识别\chapter12\bw_mouth.bmp

     文件        349  2011-10-03 09:46  精通matlab数字图像处理与识别\chapter12\code\ex12_1.m

     文件        571  2011-10-03 10:05  精通matlab数字图像处理与识别\chapter12\code\ex12_2.m

............此处省略1070个文件信息

评论

共有 条评论