资源简介
用LBP进行人脸识别,进行纹理特征提取后来提升为一种有效的纹理描述算子,度量和提取图像局部的纹理信息,对光照具有不变性。LBP有很多变种,或说改进。单纯的LBP记录像素点与其周围像素点的对比信息,或说差异。从图1我们看到,最左边的是原图,标号为example。我们要检测某个像素点的某些信息,在图1中,对于9个方格中中间方格(方格中的数字是像素点灰度值大小),做一个阈值化处理。大于等于中心点像素的,则标记为1,小于的则标记为0。最后将中心像素点周围的11110001二进制数化为十进制数,得到LBP值
代码片段和文件信息
%LBP returns the local binary pattern image or LBP histogram of an image.
% J = LBP(IRNMAPPINGMODE) returns either a local binary pattern
% coded image or the local binary pattern histogram of an intensity
% image I. The LBP codes are computed using N sampling points on a
% circle of radius R and using mapping table defined by MAPPING.
% See the getmapping function for different mappings and use 0 for
% no mapping. Possible values for MODE are
% ‘h‘ or ‘hist‘ to get a histogram of LBP codes
% ‘nh‘ to get a normalized histogram
% Otherwise an LBP code image is returned.
%
% J = LBP(I) returns the original (basic) LBP histogram of image I
%
% J = LBP(ISPMAPPINGMODE) computes the LBP codes using n sampling
% points defined in (n * 2) matrix SP. The samp
- 上一篇:MATLAB MIMO信道仿真
- 下一篇:哈工大模式识别--k均值算法
相关资源
- 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
- LBP 改程序是本人编写的
- adaboostPknnPlbp
- lbp算法MATLAB代码
- LBP算法matlab代码
- LBP特征提取及其直方图
评论
共有 条评论