1. # pip install pyzbar
  2. from pyzbar.pyzbar import decode
  3. # pip install Pillow
  4. from PIL import Image
  5. image = 'test.png'
  6. img = Image.open(image)
  7. barcodes = decode(img)
  8. for barcode in barcodes:
  9. url = barcode.data.decode("utf-8")
  10. print(url)

识别学校家具二维码

注意学校二维码不是常规编码,解析的时候需要一些操作,具体看里面的注释。
其实最好是能调用微信的扫一扫,识别率很高。

  1. import warnings
  2. warnings.filterwarnings("ignore")
  3. # pip install pyzbar
  4. from pyzbar.pyzbar import decode
  5. # pip install Pillow
  6. from PIL import Image
  7. import os
  8. # paser the qr code of facilities
  9. # input
  10. # str: img_path, the qr image path
  11. # return the parser result (string)
  12. def facility_QR_parser(img_path):
  13. QRimg = Image.open(img_path)
  14. barcodes = decode(QRimg)
  15. for barcode in barcodes:
  16. url = barcode.data.decode('utf-8')
  17. # print(url)
  18. # 转成utf-8会乱码,经玄学操作,我们决定。
  19. # 玄学秘籍:http://mytju.com/classcode/tools/messyCodeRecover.asp
  20. # 注意这里“现在编码”和“原来编码”需要反复细品
  21. # 也就是说,encode和decode方向来回都试一下
  22. # 比如对于:¿ªÃÅÎļþ¹ñ
  23. # 原来编码写的是'gbk',现在编码写的是'iso-8859-1'
  24. # 我们先转了'gbk',之后转'iso-8859-1',但是还是失败
  25. # 这里先转'iso-8859-1',再转'gbk'
  26. url = bytes(url, encoding = 'iso-8859-1')
  27. url = url.decode('gbk')
  28. return url
  29. # 把所有文件按照顺序命名
  30. def rename_all_files():
  31. allFiles = [f for f in os.listdir() if '.JPG' in f]
  32. for i in range(len(allFiles)):
  33. os.rename(file, "{}.JPG".format(i+1))
  34. # print(facility_QR_parser("65ae5bc67c52a356a471bb8b799e633.jpg"))
  35. if __name__ == '__main__':
  36. rename_all_files()
  37. allFiles = [f for f in os.listdir() if '.JPG' in f]
  38. result = []
  39. # print(allFiles)
  40. for file in allFiles:
  41. if "-" in file:
  42. pass
  43. tmp = [file, facility_QR_parser(file)]
  44. os.rename(tmp[0], "{}-{}.JPG".format(tmp[0][:-4], tmp[1]))
  45. result.append(tmp)
  46. for i in result:
  47. print(i)