Zbar覆盆子?
我想在RPI3上使用zbar,但我遇到了问题。我没有ImageScanner,Image ...模块。Zbar覆盆子?
import zbar scanner = zbar.ImageScanner()
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: 'module' object has no attribute 'ImageScanner'
我试图从pip,官方存储库,一些分叉安装它,但没有任何工作。
https://pastebin.com/ajbWdSct
我该如何访问图像模块?
回答:
要列出模块内容尝试键入:
import zbar dir(zbar)
见例如在源https://github.com/npinchot/zbar/blob/master/examples/read_one.py
以上是 Zbar覆盆子? 的全部内容, 来源链接: utcz.com/qa/263912.html