我想在这里扩展代码以提取QCodes的角落。

#!/usr/bin/python
from sys import argv
import zbar
from PIL import Image

if len(argv) < 2: exit(1)

# create a reader
scanner = zbar.ImageScanner()

# configure the reader
scanner.parse_config('enable')

# obtain image data
pil = Image.open(argv[1]).convert('L')
width, height = pil.size
raw = pil.tostring()

# wrap image data
image = zbar.Image(width, height, 'Y800', raw)

# scan the image for barcodes
scanner.scan(image)

# extract results
for symbol in image.symbols:
    # do something useful with results
    print 'decoded', symbol.type, 'symbol', '"%s"' % symbol.data

# clean up
del(image)

在先前的文章中,作者指出这是可能的“* zBar提供了一种以像素值表示的方法(一旦知道像素值的大小,您可以在%**>中找到它”

Detect the size of a QR Code in Python using OpenCV and Zbar)

我提到了Zbar SDK(http://zbar.sourceforge.net/api/classzbar_1_1Symbol.html),但仍然不知道如何提取角点。如果有人可以向我展示如何(使用Python提取角落),我将不胜感激。

最佳答案

在您的循环中,尝试:

topLeftCorners, bottomLeftCorners, bottomRightCorners, topRightCorners = [item for item in symbol.location]

您将获得4个角

答案较晚,但这可以帮助其他人
多姆

关于使用Zbar确定QR代码的角位置的Python代码,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/23796025/

10-12 23:24