树莓派学习笔记12-安装使用PyZbar
前言
通过树莓派外接USB摄像头,实现条形码的识别,并串口(USB串口)打印条形码的内容。
前期准备
硬件:树莓派4B
系统:Raspios-2021-03-04
编译器:Thonny
视觉库:OpenCV
安装PyZbar
树莓派自带Python解释器,直接pip安装即可
pip3 install pyzbar
安装zbar相关工具
sudo apt-get install zbar-tools
安装完成后直接测试即可
import time
import cv2
from pyzbar import pyzbar
#二维码动态识别
camera=cv2.VideoCapture(0)
while True:
grabbed,frame = camera.read()
dst = frame
# 扫描二维码
text = pyzbar.decode(dst)
for texts in text:
textdate = texts.data.decode('utf-8')
print('条码内容:'+textdate)
cv2.imshow('dst',dst)
if cv2.waitKey(1) & 0xFF == ord('q'):
break
camera.release()
cv2.destroyAllWindows()
效果还不错