基于pca人脸识算法代码

基于pca人脸识算法代码

ID:10982797

大小:156.50 KB

页数:18页

时间:2018-07-09

基于pca人脸识算法代码_第1页
基于pca人脸识算法代码_第2页
基于pca人脸识算法代码_第3页
基于pca人脸识算法代码_第4页
基于pca人脸识算法代码_第5页
资源描述:

《基于pca人脸识算法代码》由会员上传分享,免费在线阅读,更多相关内容在学术论文-天天文库

1、一种基于图象分析的柜员机-人脸识别算法的研究代码1.EigenfaceCode.m:function[m,A,Eigenfaces]=EigenfaceCore(T)%UsePrincipleComponentAnalysis(PCA)todeterminethemost%discriminatingfeaturesbetweenimagesoffaces.%%Description:Thisfunctiongetsa2Dmatrix,containingalltrainingimagevectors%andreturns3

2、outputswhichareextractedfromtrainingdatabase.%%Argument:T-A2Dmatrix,containingall1Dimagevectors.%SupposeallPimagesinthetrainingdatabase%havethesamesizeofMxN.Sothelengthof1D%columnvectorsisM*Nand'T'willbeaMNxP2Dmatrix.%%Returns:m-(M*Nx1)Meanofthetrainingdatabase%Eig

3、enfaces-(M*Nx(P-1))Eigenvectorsofthecovariancematrixofthetrainingdatabase%A-(M*NxP)Matrixofcenteredimagevectors%%Seealso:EIG%OriginalversionbyAmirHosseinOmidvarnia,October2007%Email:aomidvar@ece.ut.ac.ir%%%%%%%%%%%%%%%%%%%%%%%%Calculatingthemeanimagem=mean(T,2);%Co

4、mputingtheaveragefaceimagem=(1/P)*sum(Tj's)(j=1:P)Train_Number=size(T,2);18%%%%%%%%%%%%%%%%%%%%%%%%CalculatingthedeviationofeachimagefrommeanimageA=[];fori=1:Train_Numbertemp=double(T(:,i))-m;%ComputingthedifferenceimageforeachimageinthetrainingsetAi=Ti-mA=[Atemp];

5、%Mergingallcenteredimagesend%%%%%%%%%%%%%%%%%%%%%%%%SnapshotmethodofEigenfacemethos%WeknowfromlinearalgebratheorythatforaPxQmatrix,themaximum%numberofnon-zeroeigenvaluesthatthematrixcanhaveismin(P-1,Q-1).%Sincethenumberoftrainingimages(P)isusuallylessthanthenumber%

6、ofpixels(M*N),themostnon-zeroeigenvaluesthatcanbefoundareequal%toP-1.SowecancalculateeigenvaluesofA'*A(aPxPmatrix)insteadof%A*A'(aM*NxM*Nmatrix).ItisclearthatthedimensionsofA*A'ismuch%largerthatA'*A.Sothedimensionalitywilldecrease.L=A'*A;%Listhesurrogateofcovarianc

7、ematrixC=A*A'.[VD]=eig(L);%DiagonalelementsofDaretheeigenvaluesforbothL=A'*AandC=A*A'.%%%%%%%%%%%%%%%%%%%%%%%%Sortingandeliminatingeigenvalues%AlleigenvaluesofmatrixLaresortedandthosewhoarelessthana%specifiedthreshold,areeliminated.Sothenumberofnon-zero%eigenvector

8、smaybelessthan(P-1).L_eig_vec=[];fori=1:size(V,2)if(D(i,i)>1)L_eig_vec=[L_eig_vecV(:,i)];end18end%%%%%%%%%%%%%%%%%%%%%%%%Calculatingtheeigenvecto

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。