微信二维码引擎OpenCV开源!3行代码让你拥有微信扫码能力
极市平台
共 2848字,需浏览 6分钟
·
2021-02-01 22:20
极市导读
在腾讯WeChatCV团队的贡献下,微信扫码引擎正式加入OpenCV开源了!只需3行代码,你便轻松拥有微信的扫码能力! >>加入极市CV技术交流群,走在计算机视觉的最前沿
import cv2
detector = cv2.wechat_qrcode_WeChatQRCode("detect.prototxt", "detect.caffemodel", "sr.prototxt", "sr.caffemodel")
img = cv2.imread("img.jpg")
res, points = detector.detectAndDecode(img)
print(res, points)
1. 基于CNN的二维码检测
2. 基于CNN的二维码增强
3. 更鲁棒的定位点检测
推荐阅读
评论