This is the Matlab Auditory Toolbox. Version 2. First published by Apple Computer as Apple Technical Report #45. This new version is published by Interval Research Corporation as TR #1998-010. I have put this collection of code together to support m
str='F:\\code\\matlab\\face\\face'; %图像存放路径 S=0.0;%行向量 dis=zeros(1,100,'double');%每一个人脸跟平均脸的距离 b=zeros(2700,400,'double');%人脸向量矩阵 for i=1:2700 B=imread([str,num2str(i),'.bmp']); %依次读取每一幅图像 m = size(B, 3); if m==1 I = B; else I=rgb2gray(B); end %在此处进