Samuel Schmidt commited on
Commit
42232fd
·
1 Parent(s): 6ead538
Files changed (1) hide show
  1. src/LBP.py +4 -0
src/LBP.py CHANGED
@@ -14,6 +14,10 @@ class LBPImageEncoder:
14
  # of the image, and then use the LBP representation
15
  # to build the histogram of patterns
16
  print(image)
 
 
 
 
17
  gray_img = image.convert('L')
18
  print(gray_img)
19
  lbp = feature.local_binary_pattern(gray_img, self.numPoints, self.radius, method="uniform")
 
14
  # of the image, and then use the LBP representation
15
  # to build the histogram of patterns
16
  print(image)
17
+ if image.size == 0:
18
+ print("Error: Input image is empty.")
19
+ img_arr = np.array(image)
20
+ print(img_arr.shape)
21
  gray_img = image.convert('L')
22
  print(gray_img)
23
  lbp = feature.local_binary_pattern(gray_img, self.numPoints, self.radius, method="uniform")