參考文獻 Background Subtraction Based on a Combination of Texture,Color and Intensity ICSP 2008
文獻在LBP的基礎上,提出了DLBP特征 Double Local Binary Pattern.
LBP的缺點:
1).It cannot differeniate between ascending and homogeneous.
無法區分鄰域像素點與中心像素點相等,或者鄰域像素點大於中心像素點兩種情況,因此,這兩種情況所得都是s(u) = 1.
2).It is sensitive to noise due its threshold schem.
DLBP主要是為了解決LBP的缺點而提出的,表式形式如下:

當LBP+ = 0 且 LBP- = 0,表示鄰域像素點與中心像素點相同;
當LBP+ = 1 且 LBP- = 0時,表示鄰域像素點大於中心像素點;
當LBP+ = 0 且 LBP- = 1時,表示鄰域像素點小於中心像素點;
從而可以區分鄰域像素點與中心像素點的三種情況.
引入參數n,來改善像素點值輕微變化對LBP的影響.文中取n = 4.
LBP和DLBP的比較示例圖如下:

(b),(c),(d)利用DLBP更能表述圖像的特征.(a)中DLBP和LBP的表描結果是一樣的.
