• 大小: 2KB
    文件类型: .m
    金币: 1
    下载: 0 次
    发布日期: 2021-01-04
  • 语言: Matlab
  • 标签: LDA  MATLAB  lda分类器  

资源简介

LDA(Linear discriminate analysis) 分类器 。写成了MATLAB函数,效果还不错。

资源截图

代码片段和文件信息

function [train_ldatest_lda] = FisherLDA(traintr_labeltest)
% LDA: Linear discriminant analysis (Fisherfaces approach  PCA+LDA)
%
%
% Argument:      train‘                  - A 2D matrix containing all image vectors.
%                                         Suppose all P images in the training database have the 
%                                         same size of MxN. (where M is number of sampled “distance“
%                                         datas for each instaneous face and N is the number
%                                         of instaneous faces )  So the length of 1D 
%                                         column vectors is M*N and ‘T‘ will be a (M*N)xP 2D matrix.
%                tr_label               - (1*P) Labeles of each training data.
%                test

评论

共有 条评论