forked from x4nth055/pythoncode-tutorials
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbarcode_reader.py
More file actions
Latest commit
45 lines (37 loc) · 1.42 KB
/
Copy pathbarcode_reader.py
File metadata and controls
45 lines (37 loc) · 1.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
frompyzbarimportpyzbar
importcv2
defdecode(image):
# decodes all barcodes from an image
decoded_objects=pyzbar.decode(image)
forobjindecoded_objects:
# draw the barcode
print("detected barcode:", obj)
image=draw_barcode(obj, image)
# print barcode type & data
print("Type:", obj.type)
print("Data:", obj.data)
print()
returnimage
defdraw_barcode(decoded, image):
# n_points = len(decoded.polygon)
# for i in range(n_points):
# image = cv2.line(image, decoded.polygon[i], decoded.polygon[(i+1) % n_points], color=(0, 255, 0), thickness=5)
# uncomment above and comment below if you want to draw a polygon and not a rectangle
image=cv2.rectangle(image, (decoded.rect.left, decoded.rect.top),
(decoded.rect.left+decoded.rect.width, decoded.rect.top+decoded.rect.height),
color=(0, 255, 0),
thickness=5)
returnimage
if__name__=="__main__":
fromglobimportglob
barcodes=glob("barcode*.png")
forbarcode_fileinbarcodes:
# load the image to opencv
img=cv2.imread(barcode_file)
# decode detected barcodes & get the image
# that is drawn
img=decode(img)
# show the image
cv2.imshow("img", img)
# cv2.imwrite("barcode_detected.png", img)
cv2.waitKey(0)