python和opencv利用摄像头进行视频捕获

python容易上手,利用opencv进行视频录制及后期的人脸识别,都是比较简单易上手的方案。

工具:python3.10
opencv4.54
平台:win10
vscode

摄像头捕获程序:

import  cv2 as cv
cap=cv.VideoCapture(0)
fps=cap.get(cv.CAP_PROP_FPS)
while (cap.isOpened()):
    ret,frame=cap.read()
    #frame=cv.flip(frame,0)
    cv.imshow('frame',frame)
    cv.resizeWindow('frame',720,480)
    if cv.waitKey(int(1000//fps)) == ord('q'):
       break

cap.release()
cv.destroyAllWindows()

上述代码中,

cap=cv.VideoCapture(0)

videocapture的参数为0时,即代表使用默认摄像头进行录制。

如果需要一边录制一边保存,需要加几句代码:

import numpy as np
import cv2 as cv
cap = cv.VideoCapture(0)
# Define the codec and create VideoWriter object
fourcc = cv.VideoWriter_fourcc(*'XVID')
out = cv.VideoWriter('output.avi', fourcc, 20.0, (640,  480))
while cap.isOpened():
    ret, frame = cap.read()
    if not ret:
        print("Can't receive frame (stream end?). Exiting ...")
        break
    #frame = cv.flip(frame, 0)
    # write the flipped frame
    out.write(frame)
    cv.imshow('frame', frame)
    if cv.waitKey(1) == ord('q'):
        break
# Release everything if job is finished
cap.release()
out.release()
cv.destroyAllWindows()

上述代码即对录制的视频进行保存,保存的视频参数为AVI格式,20帧,640*480分辨率。

上述程序,也是opencv官方的示例代码,经过测试,是有效的。

你可能感兴趣的:(python,编程世界,python,opencv,vscode)