我正在尝试在RPI3上使用zbar,但我有一个问题。我没有ImageScanner,Image ...模块。
import zbar
scanner = zbar.ImageScanner()
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: 'module' object has no attribute 'ImageScanner'
我试图从pip,官方存储库,一些fork安装它,但没有任何工作。
https://pastebin.com/ajbWdSct
我怎样才能访问图像模块?
要列出模块内容,请尝试键入:
import zbar
dir(zbar)
参见示例在源https://github.com/npinchot/zbar/blob/master/examples/read_one.py