我确实知道这已经被问过了,但是我仍然无法在我的代码上使用它……我正试图使我的树莓派成为学校项目的QRcode演示者,以及我运行我的代码的时间
from pyzbar import pyzbar
import argparse
import cv2
#code
ap = argparse.ArgumentParser()
ap.add_argument("-i", "--image", required=True,
help="chemin de l'image")
args = vars(ap.parse_args())
#load l'image
image=cv2.imread(args["image"])
#trouver lesQR/barcode dans l'image puisles decoder
barcodes=pyzbar.decode(image)
#loop barcode
for barcode in barcodes:
#extraire les box des coins et faire un carre rouge autour du
#barcode reconnu
(x,y,w,h)=barcode.rect
cv2.rectangle(image, (x,y),(x+w,y+h),(0,0,255), 2)
#barcode est un byte donc besoin convertir en string en premier
barcodeData=barcode.data.decode("utf=8")
barcodeType=barcode.type
#dessiner data barcode et ecrire sur image
text="{}({})".format(barcodeData,barcodeType)
cv2.putText(image,text,(x,y-10),cv2.FONT_HERSHEY_SIMPLEX,
0.5, (0,0,255),2)
print("[INFO] {} code, contenu: {}".format(barcodeType,barcodeData))
#montrer output
cv2.imshow("Image",image)
cv2.waitKey(0)
但是当我运行“ python条形码_scanner_image.py --image test.png”时,我得到的只是一个错误提示
File "barcode_scanner_image.py", line 16, in <module>
barcodes=pyzbar.decode(image)
File "/home/pi/.virtualenvs/cv/lib/python3.7/site-packages/pyzbar/pyzbar.py", line 181, in decode
pixels, width, height = _pixel_data(image)
File "/home/pi/.virtualenvs/cv/lib/python3.7/site-packages/pyzbar/pyzbar.py", line 147, in _pixel_data
pixels, width, height = image
TypeError: Cannot unpack non-iterable NoneType object
请帮助
所以我没有完整的答案-但是这里的一位评论者在正确的轨道上。
如果使用实际路径图像= cv2.imread('/ home / pi / foo / bar')
它有效(或至少对我有用)。
希望这会有所帮助!