Python opencv 警告 Module cv2 has no imread member 发表于 2020-08-09 分类于 Python 在使用 opencv 库时遇到警告 Module cv2 has no imread member,代码是可以直接运行的 解决方法 只需改下cv模块的导入路径 12- import cv2 as cv+ from cv2 import cv2 as cv