摘要: pip config set global .index-url https://mirrors.aliyun.com/pypi/simple/ pip config set global .index-url https://pypi.tuna.tsinghua.edu.cn/simple pip 阅读全文
posted @ 2020-09-12 11:19 diracy 阅读(166) 评论(0) 推荐(0)
摘要: import cv2import numpycap=cv2.VideoCapture(0)#参数可改成视频路径while True: ret,frame=cap.read() print(ret,frame) cv2.imshow('frame',frame) if cv2.waitKey(1) a 阅读全文
posted @ 2020-09-12 11:12 diracy 阅读(141) 评论(0) 推荐(0)