gpt4 book ai didi

python - pyzbar 缺少实际存在的模块属性?

转载 作者:太空宇宙 更新时间:2023-11-03 21:20:35 26 4
gpt4 key购买 nike

Win 10 x64、Python 2.7、Spyder IDE

我正在使用 Adrian Rosebrock 的 OpenCV 博客中的一些代码...

import pyzbar
import cv2

# load the input image
image = cv2.imread("barcode_example.png")

# find the barcodes in the image and decode each of the barcodes
barcodes = pyzbar.pyzbar.decode(image)

# loop over the detected barcodes
for barcode in barcodes:
# extract the bounding box location of the barcode and draw the
# bounding box surrounding the barcode on the image
(x, y, w, h) = barcode.rect
cv2.rectangle(image, (x, y), (x + w, y + h), (0, 0, 255), 2)

# the barcode data is a bytes object so if we want to draw it on
# our output image we need to convert it to a string first
barcodeData = barcode.data.decode("utf-8")
barcodeType = barcode.type

# draw the barcode data and barcode type on the image
text = "{} ({})".format(barcodeData, barcodeType)
cv2.putText(image, text, (x, y - 10), cv2.FONT_HERSHEY_SIMPLEX,
0.5, (0, 0, 255), 2)

# show the output image
cv2.imshow("Image", image)
cv2.waitKey(0)

我不断收到以下错误...

AttributeError: 'module' object has no attribute 'pyzbar'

然而,当我检查 Spyder 中的模块时,它确实说了 artibute...

enter image description here

我尝试从命令行运行,结果相同。

我还检查了我的 zbar 安装是否正常工作并且没有任何问题

enter image description here

这是 Python 绑定(bind)的问题还是一些非常明显的问题?

最佳答案

尝试:

import pyzbar.pyzbar as pyzbar

对我有用。

关于python - pyzbar 缺少实际存在的模块属性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54290828/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com