-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscan_videos.py
36 lines (29 loc) · 1.02 KB
/
scan_videos.py
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
"""
scan_videos.py: A simple Barcode Scanner application that finds barcodes from a video or webcam and displays its data.
"""
__author__ = "S Sathish Babu"
__date__ = "19-12-2020 Saturday 23:30"
__email__ = "[email protected]"
import argparse
import cv2
from pyzbar import pyzbar
parser = argparse.ArgumentParser()
parser.add_argument('-v', '--video', help="Path to the video file", default=0)
args = vars(parser.parse_args())
vc = cv2.VideoCapture(args['video'])
while True:
_, frame = vc.read()
barcodes = pyzbar.decode(frame)
for barcode in barcodes:
x, y, w, h = barcode.rect
barcode_data = barcode.data.decode()
barcode_type = barcode.type
text = f'{barcode_data} {barcode_type}'
cv2.rectangle(frame, (x, y), (x+w, y+h), (0, 255, 0), 1)
cv2.putText(frame, text, (x, y-10), cv2.FONT_HERSHEY_COMPLEX, 1, (0, 255, 0), 2)
cv2.imshow('Output', frame)
key = cv2.waitKey(1)
if key & 0xFF == ord('q'):
break
vc.release()
cv2.destroyAllWindows()