• 大小: 2KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-06-16
  • 语言: Matlab
  • 标签: 人眼定位  MATLAB  

资源简介

使用MATLAB语言对人眼进行定位,其中包括灰度变化,椒盐变化,通过对图像进行两次滤波,并的到两个图像的查分图像,最后对眼睛进行定位。

资源截图

代码片段和文件信息

%-------------------------------------------------------------------------
clear all
x=imread(‘D:\tupian\QQ图片20140913151659.jpg‘);  %读取原始图像
figure(1);subplot(141);imshow(x);title(‘原图像1‘);
y=rgb2gray(x);
subplot(142);imshow(y);title(‘图像1的灰度图‘);           % 图1灰度图
u1=imnoise(y‘salt & pepper‘0.07);
subplot(143);imshow(u1);title(‘图像1加噪声图‘);     %给图1加椒盐噪声
zz=medfilt2(u1[3 3]);z=medfilt2(zz[5 5]);%(2次中值滤波)
subplot(144);imshow(z);title(‘图像1中值滤波‘);  %图1中值滤波(3*3窗口)
% figure(6);subplot(121);imshow(zz);title(‘一次滤波‘);
% subplot(122);imshow(z);title(‘二次滤波‘);
x1=imread(‘D:\tupian\QQ图片20140913151659.jpg‘);
figure(2);subplot(141);imshow(x1);title(‘原图像2‘);
y1=rgb2gray(x1);
subplot(142);imshow(y1);title(‘图像2灰度图‘);            %图2灰度图
u2=imnoise(y1‘salt & pepper‘0.13);
subplot(143);imshow(u2);title(‘图像2叫噪声图‘);    %图2加椒盐噪声
zz1=medfilt2(u2[3 3]);z1=medfilt2(zz1[5 5]);%(2次中值滤波)
subplot(144);imshow(z1);title(‘图像2滤波图‘);  %图2中值滤波
% figure(5);subplot(121);imshow(zz1)title(‘一次滤波‘);
% subplot(122);imshow(z1);title(‘二次滤波‘);
% figure(3);subplot(121);imshow(z);title(‘处理后图1‘);
% figure(3);subplot(122);imshow(z1);title(‘处理后图2‘);
f=imsubtract(z1z);                                               %图1图2差分
figure(4);subplot(111);imshow(f);title(‘差分后图像‘);
% agin=medfilt2(f[3 3]);figure(10);imshow(agin);f=agin;   %差分图中值滤波
%-------------------------------------------------------------------------




%-------------------------------------------------------------------------
%眼睛的粗定位
%标注一只眼睛
[h w]=size(f);
Amax=0;m=0;n=0;
for i=10:h
      for j=10:w
            if Amax<=f(ij)
               Amax=f(ij);m=i;n=j;
            end
      end
end
%标另外一只眼睛
Bmax=0;m1=0;n1=0;
for i1=10:m-10
    for j1=10:w-10
          if Bmax<=f(i1j1)
           Bmax=f(i1j1);m1=i1;n1=j1;
           end
    end
end
for i2=m+10:h-10
    for j2=10:w-10
          if Bmax<=f(i2j2)
           Bmax=f(i2j2);m1=i2;n1=j2;
           end
    end
end
%判断两眼的参数是否符合要求
%+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++






%----------------------------------------------------------------------

figure(7);imshow(z);hold on;plot(nm‘+‘n1m1‘+‘);title(‘标定眼睛图‘);
%给眼睛画上矩形框
figure(8);imshow(z)title(‘眼睛粗定位‘);hold on;
Bvertex=[n-25 m-15;n+25 m+15];    %矩形的左上顶点坐标和右下顶点坐标
    plot([Bvertex(11)Bvertex(21)][Bvertex(12)Bvertex(12)]‘r‘)
    plot([Bvertex(21)Bvertex(21)][Bvertex(12)Bvertex(22)]‘r‘)
    plot([Bvertex(21)Bvertex(11)][Bvertex(22)Bvertex(22)]‘r‘)
    plot([Bvertex(11)Bvertex(11)][Bvertex(12)Bvertex(22)]‘r‘);
hold on;
Bvertex=[n1-25 m1-15;n1+25 m1+15];    %矩形的左上顶点坐标和右下顶点坐标
    plot([Bvertex(11)Bvertex(21)][Bvertex(12)Bvertex(12)]‘r‘)
    plot([Bvertex(21)Bvertex(21)][Bvertex(12)Bvertex(22)]‘r‘)
    plot([Bvertex(21)Bvertex(11)][Bvertex(22)Bvertex(22)]‘r‘)
    plot([Bvertex(11)Bvertex(11)][Bvertex(12)Bvertex(22)]‘r‘);
%

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件        6889  2014-09-13 15:18  yanjing.m

评论

共有 条评论