AttributeError: module ‘cv2.cv2‘ has no attribute ‘wechat_qrcode_WeChatQRCode‘

问题描述

调用微信二维码识别报错:

AttributeError: module 'cv2.cv2' has no attribute 'wechat_qrcode_WeChatQRCode'

原因分析:

之前一直使用的都是python-opencv,但是微信的wechat_qrcode_WeChatQRCode()函数不在python-opencv里面,在opencv_contrib_python里面。


解决方案:

运行以下命令行:

pip install opencv-contrib-python

如下图:AttributeError: module ‘cv2.cv2‘ has no attribute ‘wechat_qrcode_WeChatQRCode‘_第1张图片
解决!

你可能感兴趣的:(微信,opencv,python)