资源简介
压缩感知人脸识别 图形图像,识别,去噪,恢复原图等功能,adaboost代码

代码片段和文件信息
%%
% 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
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2013-04-17 11:27 Adaboost\
目录 0 2009-07-05 22:23 Adaboost\19854803Adaboost\
文件 907 2005-07-29 10:13 Adaboost\19854803Adaboost\adaBoost.m
文件 757 2002-07-26 09:31 Adaboost\19854803Adaboost\getError.m
文件 2030 2003-12-20 17:12 Adaboost\19854803Adaboost\runAdaBoosting.m
文件 97 2002-09-16 10:42 Adaboost\19854803Adaboost\start.m
文件 514824 2002-07-25 13:50 Adaboost\19854803Adaboost\usps.mat
文件 310 2003-12-16 19:17 Adaboost\19854803Adaboost\weakLearner.m
相关资源
- 一个人脸识别程序源码
- LDA 人脸识别
- halcon简单实现人脸识别.hdev
- 人脸识别开源SDK源码
- 百度人脸识别Demo
- delphi百度人脸识别离线SDK demo
- 讯飞人脸识别eclipse版
- Delphi7调用虹软人脸识别的测试
- [b115]FPGA上运行人脸识别源代码.zip
- shape_predictor_68_face_landmarks.dat.bz2 68个标
- labview人脸识别283682
- 一种基于LBP和CNN的人脸识别算法
- 基于CAFFE的人脸识别系统
- LabVIEW的人脸识别代码
- 基于深度学习实现人脸识别包含模型
- 人脸识别必备的FERET人脸数据库
- 经典的人脸识别论文,包含中、英文
- H5人脸识别+活体检测眨眼摇头
- 人脸识别图像预处理技术
- iOS平台下人脸识别系统实现研究
- 人脸识别数据集说明及其
- 卷积神经网络的人脸识别样本采集+
- STM32人脸识别代码
- 科大讯飞 语音听写 人脸识别 sdk
- 基于PCA的人脸识别技术的研究
- 基于LBP算法的人脸识别研究
- 人脸识别SDK免费,可商用,有演示、
- 人脸识别三套源码含小程序源码亲测
- 基于神经网络的人脸识别(附代码)
- 基于多任务卷积网络(MTCNN)和Cente
评论
共有 条评论