当前位置:   article > 正文

Python - Opencv + pyzbar实时摄像头识别二维码_python-pyzbar的二维码识别

python-pyzbar的二维码识别

直接上代码:

import cv2
from pyzbar.pyzbar import decode

cap = cv2.VideoCapture(0)  # 打开摄像头

while True:  # 循环读取摄像头帧
    ret, frame = cap.read()

    # 在循环中,将每一帧作为图像输入,使用pyzbar的decode()函数识别二维码
    barcodes = decode(frame)

    # 绘制二维码框和数据
    for barcode in barcodes:
        rect = barcode.rect
        x, y, w, h = rect
        cv2.rectangle(frame, (x, y), (x + w, y + h), (0, 255, 0), 2)
        data = barcode.data.decode("utf8")
        cv2.putText(frame, data, (x, y - 10), cv2.FONT_HERSHEY_SIMPLEX, 0.5, (0, 0, 255), 2)
        print("Result:" + data)
    # 显示结果  
    cv2.imshow('Image', frame)

    if cv2.waitKey(1) == ord('q'):
        break

cap.release()
cv2.destroyAllWindows()

  • 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

简单使用的记录
在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/羊村懒王/article/detail/680535
推荐阅读
相关标签
  

闽ICP备14008679号