Spaces:
Runtime error
Runtime error
Samuel Schmidt
commited on
Commit
·
b999e24
1
Parent(s):
a10ade2
Update src/LBP.py
Browse files- src/LBP.py +2 -0
src/LBP.py
CHANGED
@@ -13,7 +13,9 @@ class LBPImageEncoder:
|
|
13 |
# compute the Local Binary Pattern representation
|
14 |
# of the image, and then use the LBP representation
|
15 |
# to build the histogram of patterns
|
|
|
16 |
gray_img = image.convert('L')
|
|
|
17 |
lbp = feature.local_binary_pattern(gray_img, self.numPoints, self.radius, method="uniform")
|
18 |
(hist, _) = np.histogram(lbp.ravel(), bins=np.arange(0, self.numPoints + 3), range=(0, self.numPoints + 2))
|
19 |
# normalize the histogram
|
|
|
13 |
# compute the Local Binary Pattern representation
|
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")
|
20 |
(hist, _) = np.histogram(lbp.ravel(), bins=np.arange(0, self.numPoints + 3), range=(0, self.numPoints + 2))
|
21 |
# normalize the histogram
|