• 大小: 71KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-01-07
  • 语言: Matlab
  • 标签: 骨架提取  

资源简介

本代码是骨架特征提取的代码,用Matlab编写,效果还不错!

资源截图

代码片段和文件信息

clear all;
I=imread(‘kids.tif‘);
subplot(221);
imshow(I);
title(‘原图像‘);
level=graythresh(I);
I=im2bw(Ilevel);subplot(222);...
imshow(I);
re=ones(400318);
I=re-I;
subplot(222);
imshow(I);
title(‘二值化的图像‘);
bwl=bwmorph(I‘skel‘Inf);
subplot(223);
imshow(bwl);
title(‘骨架提取‘);
bw2=bwmorph(bwl‘spur‘4);
subplot(224)
imshow(bw2)
title(‘消除毛刺后的图像‘);

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

     文件      71964  2009-04-08 21:31  untitled.fig

     文件        396  2009-04-08 18:40  gujia.m

----------- ---------  ---------- -----  ----

                72360                    2


评论

共有 条评论