资源简介

Sparse Representation or Collaborative Representation: Which Helps Face Recognition ICCV2011最新的文章,论述了稀疏表示和协同编码对人脸识别的作用,代码详细。

资源截图

代码片段和文件信息

function [id]= CRC_RLS(Dclass_pinv_MyDlabels)
%------------------------------------------------------------------------
% CRC_RLS classification function
coef         =  class_pinv_M*y;
for ci = 1:max(Dlabels)
    coef_c   =  coef(Dlabels==ci);
    Dc       =  D(:Dlabels==ci);
    error(ci) = norm(y-Dc*coef_c2)^2/sum(coef_c.*coef_c);
end

index      =  find(error==min(error));
id         =  index(1);

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2011-12-24 11:04  Sparse Representation or Collaborative Representation Which Helps Face Recognition\
     文件     3298295  2011-07-12 11:53  Sparse Representation or Collaborative Representation Which Helps Face Recognition\AR_DAT.mat
     文件         419  2011-07-12 14:07  Sparse Representation or Collaborative Representation Which Helps Face Recognition\CRC_RLS.m
     文件        2117  2011-07-12 14:08  Sparse Representation or Collaborative Representation Which Helps Face Recognition\CRC_RLS_Test.m
     文件        1351  2011-07-12 11:47  Sparse Representation or Collaborative Representation Which Helps Face Recognition\Eigenface_f.m
     文件         665  2011-07-12 14:04  Sparse Representation or Collaborative Representation Which Helps Face Recognition\README.txt

评论

共有 条评论