clc
clear
[name,path]=uigetfile({'*.jpg';'*.bmp';'tif'},'载入图像');
x=imread([path,name]); %获取位置
figure(1);
subplot(231)
imshow(x); %显示图像
title('测试原图')
f=x;
mainfc;
[a b c]=size(f);
for i=1:a
for j=1:b
if f(i,j)<50
F(i,j)=1;
else
F(i,j)=0;
end
end
end
subplot(232)
imshow(F);
title('定位图');
f=F;
f=bwareaopen(f,5000);
subplot(233)
imshow(f);
title('腐蚀');
se=strel('disk',5); %生成圆形结构元素
f=imdilate(f,se); %用生成的结构元素对图像进行腐蚀
subplot(234)
imshow(f);
title('膨胀');
se=strel('disk',6);
fc=imclose(f,se);%闭运算
fc=imfill(fc,'hole');%填洞
subplot(235),imshow(fc);
title('填洞')
%%%%定位
L = bwlabel(fc);
STATS = regionprops(L,'all');
%在bw图像上绘制出连通域的矩形框
subplot(236); imshow(x); title('定位图')
hold on
BW=fc;
[L,num] = bwlabel(BW); %标记
global boundary
%判别是否有口罩
msgbox('佩戴口罩');
for i = 1 : 1
boundary = STATS(i).BoundingBox;
rectangle('Position',boundary,'edgecolor','r' );
end
猪尾巴草龙
- 粉丝: 1115
- 资源: 69
最新资源
- (源码)基于SimPy和贝叶斯优化的流程仿真系统.zip
- (源码)基于Java Web的个人信息管理系统.zip
- (源码)基于C++和OTL4的PostgreSQL数据库连接系统.zip
- (源码)基于ESP32和AWS IoT Core的室内温湿度监测系统.zip
- (源码)基于Arduino的I2C协议交通灯模拟系统.zip
- coco.names 文件
- (源码)基于Spring Boot和Vue的房屋租赁管理系统.zip
- (源码)基于Android的饭店点菜系统.zip
- (源码)基于Android平台的权限管理系统.zip
- (源码)基于CC++和wxWidgets框架的LEGO模型火车控制系统.zip
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈