使用Matlab'extractLBPFeatures'的本地二进制模式功能

时间:2019-03-27 12:19:26

标签: matlab feature-extraction pattern-recognition lbph-algorithm

我试图理解extractLBPFeatures函数来提取59个统一特征,这是一个简单的代码,可从图像中提取59个特征

img = imread('cameraman.tif');
LBP = extractLBPFeatures(img, 'Normalization' , 'none');

根据我对LBP and Uniform LBP的了解,LBP就像直方图一样,它计算像素的频率,但是每个中心像素的二进制代码(转换为新的数字)而不是强度,而是会得到0到59之间的垃圾箱,其中每个数字都有

这是LBP功能,但是数字不应该是实数,因为它是在计算每个像素的频率或出现次数? enter image description here

0 个答案:

没有答案