• 大小: 6KB
    文件类型: .m
    金币: 1
    下载: 0 次
    发布日期: 2021-01-03
  • 语言: Matlab
  • 标签: LDA  模式识别  

资源简介

LDA 模式识别 matlab

资源截图

代码片段和文件信息

  iNum_Train_PerSample = 3;%训练样本数
  iNum_Test_PerSample = 8;%测试样本数
  iHeight = 24;
  iWidth = 24;
  iClass = 15;%人脸特征类别数
  iNum_PerSample = 11;%每一类所含样本个数
  iDim_Image = iHeight * iWidth;
  Image = zeros(iDim_Image iClass iNum_PerSample);%零矩阵
  
  fprintf(‘********** Step 1 Read Images **********\n‘);
  for i = 1 : iClass
    for j = 1 : iNum_PerSample
        if i < 10 
          filestr = strcat(‘0‘ int2str(i));%外部是连接字符串函数,内部是转化为串
        else
          filestr = int2str(i);
        end
        str_Path_Image = [‘F:\FaceRecognitionSystem\人脸库\YALE\subject‘ filestr];
        str_Path_Image = [str_Path_Image ‘_‘];
        str_Path_Image = [str_Path_Image int2str(j)];
        B = imread(str_Path_Image ‘bmp‘);%读取bmp格式的图像到内存中
        B=imresize(B[24 24]);%对图像进行缩放
    

评论

共有 条评论