pyzbar отсутствует атрибут модуля, который действительно существует? - PullRequest
0 голосов
/ 21 января 2019

Win 10 x64, Python 2.7, Spyder IDE

Я использую некоторый код из блога Adrian Rosebrock's 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 или что-то действительно очевидное?

...