视频其实本质上就是由一幅一幅的图片组成的 # 打开视频文件 import cv2 vc = cv2.VideoCapture('./1.avi') # 打开摄像头 vc = cv2.VideoCapture(0) # 检查是否正确打开 if vc.isOpened(): # 读取视频的一帧 open, frame = vc.read() else: open = Falsed 第一份代码跟第二份代码效果相同,均为打开摄像头
# 打开视频文件
import cv2
cv2.namedWindow('video', cv2.WINDOW_NORMAL)
cv2.resizeWindow('video', 640, 480)
cap = cv2.VideoCapture(0)
# 循环读取摄像头的每一帧
while True:
# 读一帧数据,返回标记和这一阵数据,True表示读到了数据, False表示没读到数据
ret, frame = cap.read()
# 可以根据ret做个判断
if not ret:
# 没读到数据
break
cv2.imshow('video',frame)
key = cv2.waitKey(10)
if key == ord('q'):
break
#释放资源
cap.release()
cv2.destroyAllWindows()
# 打开视频文件
import cv2
cv2.namedWindow('video', cv2.WINDOW_NORMAL)
cv2.resizeWindow('video', 640, 480)
# 如果打开失败, 不会报错
cap = cv2.VideoCapture(0)
# 循环读取摄像头的每一帧
# while True:
while cap.isOpened()
# 读一帧数据,返回标记和这一阵数据,True表示读到了数据, False表示没读到数据
ret, frame = cap.read()
# 可以根据ret做个判断
if not ret:
# 没读到数据
break
cv2.imshow('video',frame)
key = cv2.waitKey(10)
if key == ord('q'):
break
#释放资源
cap.release()
cv2.destroyAllWindows()
打开视频:
# 打开视频文件
import cv2
cv2.namedWindow('video', cv2.WINDOW_NORMAL)
cv2.resizeWindow('video', 640, 480)
# 打开视频,输入视频地址
cap = cv2.VideoCapture('./1.avi')
# 循环读取摄像头的每一帧
# while True:
while cap.isOpened():
# 读一帧数据,返回标记和这一阵数据,True表示读到了数据, False表示没读到数据
ret, frame = cap.read()
# 可以根据ret做个判断
if not ret:
# 没读到数据
break
cv2.imshow('video',frame)
# 加入一个图是30帧,那么每张图之间要间隔多少毫秒
# key = cv2.waitKey(1000 // 3)
key = cv2.waitKey(10)
if key == ord('q'):
break
#释放资源
cap.release()
cv2.destroyAllWindows()