Advertisement
pacho_the_python

decode_qr

Apr 21st, 2022
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.15 KB | None | 0 0
  1. from pyzbar.pyzbar import decode
  2. import cv2
  3.  
  4. img = cv2.imread(r"J:\Python\Mines\qr_system\pachobg.png")
  5. decode_list = decode(img)
  6.  
  7. print(decode_list)
  8.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement