A=imread('3.jpg');
figure(1);
subplot(241);
imshow(A);title('原图');
I=rgb2gray(A);
subplot(242);;imshow(I);title('灰度图');
K=medfilt2(I,[16,16]);
subplot(243);;imshow(A);title('中值滤波');
s=size(K);
all_white=255*ones(s(1),s(2));
all_white_uint8=uint8(all_white);
L=imsubtract(all_white_uint8,K);
level=graythresh(L);
I2=im2bw(L,level);
subplot(244);
imshow(I2);title('二值图');
se=strel('square',3);
J=imopen(I2,se);
J1=imclose(J,se);
subplot(245);imshow(J1);title('形态学处理');
J1=~J1;
subplot(246);imshow(J1);title('形态学处理');
mainfc;
hold on
subplot(241);
[L,num1] = bwlabel(J1,8); %区域标记,
STATS = regionprops(L, 'all');
for k = 1:num1
%area(k)=STATS(k).Area; %计算各区域的面积。
boundary = STATS(k).BoundingBox;
rectangle('Position',boundary,'edgecolor','r' );
end
BW=edge(J1,'canny');
subplot(247);imshow(BW);title('边缘检测');
BW1=bwareaopen(BW,400,8);
subplot(248);imshow(BW1);title('去除小面积');
清风明月来几时
- 粉丝: 1054
- 资源: 147
最新资源
- 基于python贫困生资助管理系统带vue前后端分离设计源代码+文档说明+数据库(高分毕设)
- python毕设基于图神经网络的异构图表示学习和推荐算法研究源代码+文档说明
- 暴风TV 45F 配屏V450DJ1-Q01 机编60000AM1600 60000AM1601 屏参30162801 本地升级
- python毕业设计基于深度学习的多任务空气质量预测模型设计与实现代码+数据集+文档说明
- 基于深度学习的多任务空气质量预测模型设计与实现+数据集+源代码+文档说明(python毕业设计)
- 基于python的计算机网络在线考试系统设计+源代码+文档说明+论文(高分毕设)
- 页面色彩精美-英文游戏
- 实验任务书(中级-软件开发-三维游戏开发-三维建模-关卡-0002-关卡设计师快速入门).pdf
- IntraWeb异常写入log文件
- Hirender P1是一款备受国内音响师青睐的音乐播放神器
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈