我想在此扩展代码以提取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提供了一种在像素值方面做到这一点的方法(一旦你知道像素值的大小,就可以在%**&gt;中找到它)”
见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提取角落,我会很感激。
答案 0 :(得分:5)
在循环中,尝试:
topLeftCorners, bottomLeftCorners, bottomRightCorners, topRightCorners = [item for item in symbol.location]
你会得到4个角落
迟到的回答但这可以帮助别人 DOM