数字图像处理大作业

数字图像处理的大作业,将图片中瓶盖的部分定位
还好小可爱帮我,还有同学,代码是自己写的(包含百度中的代码)思路不是自己想的,要继续努力呢。
数字图像处理大作业_第1张图片
matlab

clear;
clc;
close all;
a = imread('C:\Users\Public\Pictures\Sample Pictures\topic1.JPG');
hv=rgb2hsv(a); 
%可以通过下面的程序看一幅图的HSV三个通道 
H=hv(:,:,1);
S=hv(:,:,2);
V=hv(:,:,3);
subplot(2,1,1);imshow(a);title('原始图像'); 
%subplot(1,2,2);imshow(hv);title('HSV空间I图像');
%subplot(1,3,1);imshow(H);title('HSV空间H分量图像');
%subplot(1,3,2);imshow(S);title('HSV空间S分量图像');
%subplot(1,3,3);imshow(V);title('HSV空间V分量图像');
I=mat2gray(S);
Ibw=im2bw(I);
[l,m]=bwlabel(Ibw,8);
status=regionprops(l,'area','BoundingBox');
areas = [status.Area];
rects = cat(1,  status.BoundingBox); 
[~, max_id] = max(areas);  
max_rect = rects(max_id, :);   
% show the largest connected region    
subplot(2,1,2);imshow(a);title('结果');   
rectangle('position', max_rect, 'EdgeColor', 'r');

你可能感兴趣的:(matlab)