覆盆子上的Zbar?

问题描述 投票:0回答:1

我正在尝试在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

我怎样才能访问图像模块?

python raspberry-pi3 zbar image-scanner
1个回答
0
投票

要列出模块内容,请尝试键入:

import zbar
dir(zbar)

参见示例在源https://github.com/npinchot/zbar/blob/master/examples/read_one.py

© www.soinside.com 2019 - 2024. All rights reserved.