資源簡介
由于畢設要做這個~所以本人特地在網上收集一些關于人臉識別的資料~希望對大家有用~呵呵
代碼片段和文件信息
%%
%?File?Name:?AdaBoost
%?This?is?the?implementation?of?the?ada?boost?algorithm.
%?Parameters?-?very?easy?to?guess?by?name...
%?Return?values:?i?-?hypothesis-index??vector.
%????????????????t?-?threshhols?vector
%????????????????beta?-?weighted?beta.
%%
function?boosted=adaBoost(traintrain_labelcycles)
????disp(‘running?adaBoost?algorithm‘);
????d=size(train);
distribution=ones(1d(1))/d(1);
error=zeros(1cycles);
beta=zeros(1cycles);
label=(train_label(:)>=5);%?contain?the?correct?label?per?vector
for?j=1:cycles
????????if(mod(j10)==0)
????????????disp([jcycles]);
????????end
[it]=weakLearner(distributiontrainlabel);
????error(j)=distribution*abs(label-(train(:i)>=t));
????beta(j)=error(j)/(1-error(j));
????boosted(j:)=[beta(j)it];
????distribution=distribution.*?exp(log(beta(j))*(1-abs(label-(train(:i)>=t))))‘;
????distribution=distribution/sum(distribution);
end
????
????
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件?????702050??2010-11-24?23:25??faceDe.pdf
?????文件????7102783??2010-11-24?23:20??人臉檢測與跟蹤算法的研究.nh
?????文件??????21766??2005-05-28?18:10??第13章+人臉檢測源碼FaceDetection\Debug\DIBAPI.obj
?????文件??????25282??2008-03-06?16:52??第13章+人臉檢測源碼FaceDetection\Debug\FaceDetection.obj
?????文件?????680960??2005-05-28?18:10??第13章+人臉檢測源碼FaceDetection\Debug\FaceDetection.pdb
?????文件?????119828??2005-05-28?18:10??第13章+人臉檢測源碼FaceDetection\Debug\FaceDetection.res
?????文件??????82576??2008-03-06?16:45??第13章+人臉檢測源碼FaceDetection\Debug\FaceDetectionDoc.obj
?????文件??????45717??2005-05-28?18:10??第13章+人臉檢測源碼FaceDetection\Debug\FaceDetectionView.obj
?????文件??????24677??2005-05-28?18:10??第13章+人臉檢測源碼FaceDetection\Debug\MainFrm.obj
?????文件?????105437??2005-05-28?18:10??第13章+人臉檢測源碼FaceDetection\Debug\StdAfx.obj
?????文件?????230400??2008-03-06?16:52??第13章+人臉檢測源碼FaceDetection\Debug\vc60.idb
?????文件?????372736??2008-03-06?16:52??第13章+人臉檢測源碼FaceDetection\Debug\vc60.pdb
?????文件??????73332??2005-04-03?21:03??第13章+人臉檢測源碼FaceDetection\DETOURS.lib
?????文件??????28372??2003-06-26?10:17??第13章+人臉檢測源碼FaceDetection\DIBAPI.CPP
?????文件???????1806??2003-03-28?11:38??第13章+人臉檢測源碼FaceDetection\DIBAPI.h
?????文件?????157508??2005-05-23?17:12??第13章+人臉檢測源碼FaceDetection\FaceDetection.aps
?????文件???????3009??2005-05-23?17:22??第13章+人臉檢測源碼FaceDetection\FaceDetection.clw
?????文件???????4814??2005-05-20?15:46??第13章+人臉檢測源碼FaceDetection\FaceDetection.cpp
?????文件???????5548??2005-05-20?16:30??第13章+人臉檢測源碼FaceDetection\FaceDetection.dsp
?????文件????????549??2005-05-28?18:11??第13章+人臉檢測源碼FaceDetection\FaceDetection.dsw
?????文件???????1433??2005-05-20?15:15??第13章+人臉檢測源碼FaceDetection\FaceDetection.h
?????文件?????386048??2008-03-06?16:52??第13章+人臉檢測源碼FaceDetection\FaceDetection.ncb
?????文件??????70656??2008-03-06?16:52??第13章+人臉檢測源碼FaceDetection\FaceDetection.opt
?????文件???????1012??2008-03-06?16:52??第13章+人臉檢測源碼FaceDetection\FaceDetection.plg
?????文件??????13710??2005-05-23?17:12??第13章+人臉檢測源碼FaceDetection\FaceDetection.rc
?????文件??????47467??2005-05-23?17:25??第13章+人臉檢測源碼FaceDetection\FaceDetectionDoc.cpp
?????文件???????4056??2005-05-23?17:24??第13章+人臉檢測源碼FaceDetection\FaceDetectionDoc.h
?????文件???????9519??2005-05-23?17:08??第13章+人臉檢測源碼FaceDetection\FaceDetectionView.cpp
?????文件???????2637??2005-05-23?17:08??第13章+人臉檢測源碼FaceDetection\FaceDetectionView.h
?????文件???????3491??2005-05-20?16:05??第13章+人臉檢測源碼FaceDetection\MainFrm.cpp
............此處省略163個文件信息
評論
共有 條評論