OpenCV python程序练习 constant007 2021-10-28 187 阅读1分钟 import cv2 img = cv2.imread('Lenna.jpg', 1) #0 gray 1 color cv2.imshow("img",img) cv2.waitKey(0) cv2.destroyAllWindows()