unit16图像vs unit8图像的本地二进制特征

时间:2019-03-26 15:52:48

标签: matlab feature-extraction lbph-algorithm

我有unit16图像数据集,我想使用Matlab函数extractLBPFeatures从中提取LBP特征,该函数使用统一的LBP(59个特征)。 因此,当我将其应用于单元16图像时,它显示以下内容:

enter image description here

但是使用unit8图片,它会给出

enter image description here

可能是什么原因?是因为LBP使用的直方图可以看成256维(0-255),如果是这样,如何处理unit16图像

这是代码

im16 = imread('I_rec_no_color.tif');
im8 = imread('I_rec_no_color_8.tif');
LBP16 = extractLBPFeatures(im16);
LBP8= extractLBPFeatures(im8 );

0 个答案:

没有答案