机器学习OpenCV(Python版本)
环境部署
pip install opencv-python opencv-contrib-python pytesseract
环境测试
import cv2
print(cv2.__version__)
src=cv2.imread("H:\LearningPython\pictures\hello.png")
cv2.namedWindow("input image",cv2.WINDOW_AUTOSIZE)
cv2.imshow("output image",src)
cv2.waitKey(0)
cv2.destroyAllWindows()
OpenCV模块图
posted on 2019-02-26 13:58 Indian_Mysore 阅读(697) 评论(7) 编辑 收藏 举报