LBP特征提取 Resources

Showing items tagged with "LBP特征提取"

LBP (Local Binary Pattern) is an operator used to describe local texture features in images. The original LBP, proposed in 1994, captures relationships between each pixel and its surrounding pixels. Various improvements led to extended versions like rotation-invariant LBP and uniform LBP patterns. Implementation typically involves comparing pixel intensities with neighbors to generate binary codes that encode texture information.

MATLAB 200 views Tagged

MATLAB implementation of LBP feature extraction with getmapping.m defining three different LBP patterns and lbp.m containing the core implementation using efficient sliding-window approach for whole-image LBP transformation without regional partitioning.

MATLAB 255 views Tagged