资源简介

基于块的LBP,来自论文“Learning Multi-scale Block Local Binary Patterns for Face Recognition”

资源截图

代码片段和文件信息

% This function just using to obtain the Intergral image
% Hunan University
% Edit 25.01.2013
% if you find anything wrongjust not hesitate to email me
% hudalikm@163.com
% look for paper “Robust real time object detection“ for details
function Intergraimage=getIntergraimage(img)
if ndims(img)==3
    img=rgb2gray(img);% 灰度
end
img=double(img); % transform to double
Intergraimage.img=cumsum(cumsum(img1)2); % the intergral image
% IntegralImages.ii=padarray(IntegralImages.ii[1 1] 0 ‘pre‘);
Intergraimage.width = size(Intergraimage.img2);
Intergraimage.height = size(Intergraimage.img1);
end

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件        2152  2013-01-25 09:31  MBLBP\MBLBP.asv
     文件        2152  2013-01-25 09:31  MBLBP\MBLBP.m
     文件         529  2013-01-25 09:16  MBLBP\getIntergraimage.asv
     文件         618  2013-01-25 09:33  MBLBP\getIntergraimage.m
     文件         380  2013-01-25 09:31  MBLBP\main.m
     目录           0  2013-01-25 09:26  MBLBP\

评论

共有 条评论