• 大小: 83KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-01-02
  • 语言: Matlab
  • 标签: 人脸识别  matlab  

资源简介

数字图像处理人脸识别的MATLAB程序,采用特征脸的人脸识别MATLAB程序.zip

资源截图

代码片段和文件信息

% Face recognition by Santiago Serrano
%人脸识别代码
clear all
close all
clc
% number of images on your training set.
%训练集数目
M=10;
%Chosen std and mean. 
%It can be any number that it is close to the std and mean of most of the images.
um=100;
ustd=80;
%read and show images(bmp);
%读入M个训练图像并显示在一个窗口上
S=[];   %img matrix
figure(1);
for i=1:M
    str=strcat(‘D:\PFC\S1\‘int2str(i)‘.bmp‘);    %concatenates two strings that form the name of the image
    eval(‘img=imread(str);‘);
    subplot(ceil(sqrt(M))ceil(sqrt(M))i)
    imshow(img)
    if i==3
        title(‘Training set‘‘fontsize‘18)
    end
    drawnow;
    [irow icol]=size(img);    % get the number of rows (N1) and columns (N2)获得图像的大小所有图像的大小要一致
    temp=reshape(img‘irow*icol1);     %creates a (N1*N2)x1 matrix一幅

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2008-04-01 14:30  PFC\
     文件       11078  2006-02-26 21:36  PFC\1.bmp
     文件       11078  2006-02-26 21:36  PFC\10.bmp
     文件       11078  2006-02-26 21:36  PFC\2.bmp
     文件       11078  2006-02-26 21:36  PFC\3.bmp
     文件       11078  2006-02-26 21:36  PFC\4.bmp
     文件       11078  2006-02-26 21:36  PFC\5.bmp
     文件       11078  2006-02-26 21:36  PFC\6.bmp
     文件       11078  2006-02-26 21:36  PFC\7.bmp
     文件       11078  2006-02-26 21:36  PFC\8.bmp
     文件       11078  2006-02-26 21:36  PFC\9.bmp
     文件        5610  2006-02-26 21:20  PFC\PFC.asv
     文件        5633  2006-02-26 21:36  PFC\PFC.m
     文件         118  2008-04-01 14:30  PFC\新建 文本文档.txt
     文件        1223  2008-01-29 17:37  PFC\说明.txt

评论

共有 条评论