资源简介
改程序是本人编写的,可以运行,采用的是yale人脸数据,采用4*4分块,无权值,统一旋转不变模式
代码片段和文件信息
% This function is used to combine the histogram feature of the lbp code
% iamge
function combine_feature_vector=combine_h_feature(lbp_image)
k=4;% the blocks
mapping=myself_mapping(8);% getmapping
bins= mapping.num;% bins
feature_vector=zeros(1bins*k*k);% the feature vector variant
% combination of the feature
vector_lable=0;
for i=1:k*k
for j=1:bins
vector_lable=vector_lable+1;
feature_vector(vector_lable)=lbp_image{i}(j);
end
end
combine_feature_vector=feature_vector;
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 4616 2012-07-16 11:32 4x4分块\LBP_C.m
文件 4339 2012-07-16 15:04 4x4分块\mul_reading.m
文件 519 2012-07-13 15:18 4x4分块\combine_h_feature.m
文件 923 2012-07-12 09:51 4x4分块\myself_mapping.m
目录 0 2012-07-16 18:02 4x4分块
----------- --------- ---------- ----- ----
10397 5
- 上一篇:BP-face-recognization
- 下一篇:sift
相关资源
- LBP 纹理模式的LBP特征表示及分类原理
- LBP 统一化LBP算子
- LBP 实现图像纹理特征的提取
- LBP-face-recongnition-system 一个基于LBP(局
- adaboost-train-test 级联分类器学习
- MBLBP 基于块的LBP
- renlianshibie Gabor小波人脸识别
- LBPPLPQFER 人脸表情识别matlab程序LBP+L
- LBP
- pedestrian-detectionsvms.tar
- LBP-SIFT-image-matching-algorithm-combined
- adaboostPknnPlbp
- lbp算法MATLAB代码
- LBP算法matlab代码
- LBP特征提取及其直方图
- 基于LBP的人脸识别
评论
共有 条评论