Questions tagged «zbar»

5
如何在(最好是纯净的)Python中解码QR码图像?
TL; DR:我需要一种使用(最好是纯净的)Python从图像文件中解码QR码的方法。 我有一个带有QR码的jpg文件,我想使用Python对其进行解码。我找到了一些声称可以做到这一点的库: PyQRCode(这里的网站)可以通过简单地提供如下路径来解码图像中的二维码: import sys, qrcode d = qrcode.Decoder() if d.decode('out.png'): print 'result: ' + d.result else: print 'error: ' + d.error 因此,我只是使用安装了它sudo pip install pyqrcode。我觉得奇怪但上面的示例代码的东西,是它唯一的进口qrcode(而不是pyqrcode虽然)因为我觉得qrcode是指这个库只能生成QR码图像它有点儿搞糊涂了。所以我用pyqrcode和尝试了上面的代码qrcode,但是都在第二行说了失败AttributeError: 'module' object has no attribute 'Decoder'。此外,该网站引用了Ubuntu 8.10(已发布6年多)了,我找不到它的公共(git或其他)存储库来检查最新提交。所以我转到下一个库: ZBar(在这里的网站)声称是"an open source software suite for reading bar codes from various sources, such as image files."这样,所以我尝试在运行的Mac …
85 python  decode  qr-code  zxing  zbar 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.