资源简介
压缩感知人脸识别 图形图像,识别,去噪,恢复原图等功能,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
相关资源
- Qt+百度AI接口人脸识别小
- 基于Fisher的人脸识别程序
- LINUX下完整的人脸识别算法保证可以用
- faces_for_pca.rar
- 基于训练卷积神经网络的人脸识别设
-
haarcascade_frontalface_default.xm
l - 人脸识别在arm板上的实现
- 基于 springboot2.0 实现的人脸识别登陆
- 人脸识别毕业设计
- 活体检测H5文档及--人脸识别
- OpenCV人脸识别包含数据集的txt文件
- AdaBoost人脸识别完整实现(含特征提取
- 带GUI的人脸识别软件系统
- 人脸识别完整代码包括PCA_LDA算法
- 人脸检测英文文献 人脸识别最新英文
- 人脸识别技术综述和应用
- OpenCV人脸识别训练集
- opencv3.4.1人脸识别小程序
- OpenCVForUnity2.2.4
- TensorFlow实现人脸识别(5)-------利用
- TensorFlow实现人脸识别(1)------Linux下
- 关于人脸识别的相关论文
- 人脸识别文献综述
- ARM上利用opencv实现人脸识别
- 基于SSM框架的百度人脸识别
- 基于KCCA的特种融合方法
- CASIA-WebFace.txt
- 利用百度人脸识别API和pyqt5实现基于人
- shibie.zip
- 人脸识别需要的haarcascade_frontalface_d
评论
共有 条评论