赞
踩
先从一个简单的图片显示程序开始,代码如下:
import cv2 def main(): img=cv2.imread(r"F:\timg.jpg") cv2.imshow('image',img) cv2.waitKey(0) if