• 大小: 17.1M
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-04-18
  • 语言: 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
     文件        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
     文件         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
     文件       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
     文件       78634  2004-01-05 11:21  精通Matlab数字图像处理与识别(张铮等)\chapter11\line.bmp
     文件         439  2004-01-05 10:57  精通Matlab数字图像处理与识别(张铮等)\chapter11\code\autoThreshold.m
     文件         537  2004-01-05 11:02  精通Matlab数字图像处理与识别(张铮等)\chapter11\code\ex11_1.m
     文件        1285  2004-01-05 11:18  精通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
     文件        3510  2011-10-03 09:09  精通Matlab数字图像处理与识别(张铮等)\chapter12\bw_mouth.bmp
     文件        1126  2011-10-03 09:09  精通Matlab数字图像处理与识别(张铮等)\chapter12\littleTexture.bmp
     文件       67638  2008-12-22 19:40  精通Matlab数字图像处理与识别(张铮等)\chapter12\mh_gray.bmp
     文件        2558  2011-10-03 09:09  精通Matlab数字图像处理与识别(张铮等)\chapter12\sub_texture1.bmp
............此处省略948个文件信息

评论

共有 条评论