opencv实现将相机图片保存为视频,具体代码如下:

#-*-coding:utf-8-*-
# date:2021-07-21
# Author: DataBall - XIAN
# Function: 相机图像存储视频

import os
import cv2
import time

if __name__ == "__main__":
    path = "./video/" # 视频保存路径
    if not os.path.exists(path): # 如果文件夹不存在
        os.mkdir(path) # 生成文件夹

    #加载相机
    cap = cv2.VideoCapture(0) #一般usb默认相机号为 0,如果没有相机无法启动,如果相机不为0需要自行确定其编号。
    video_writer = None
    loc_time = time.localtime()
    str_time = time.strftime("%Y-%m-%d_%H-%M-%S", loc_time)
    save_video_path = path + "video_{}.mp4".format(str_time)

    while True:
        ret, img = cap.read()# 获取相机图像
        if ret == True:# 如果 ret 返回值为 True,显示图片
            cv2.namedWindow('camera',0)
            cv2.imshow("camera", img)

            if video_writer is None:
                fourcc = cv2.VideoWriter_fourcc(*"mp4v")
                video_writer = cv2.VideoWriter(save_video_path, fourcc, fps=25, frameSize = (img.shape[1], img.shape[0]))
            video_writer.write(img)

            key = cv2.waitKey(33)
            if key == 27:#当按键esc,退出显示
                break
        else:# ret 返回 False,退出循环
            break

    cap.release()#释放
    video_writer.release()#释放
    cv2.destroyAllWindows()#关闭显示窗口

  opencv 将相机图片转为视频 - python 实现-LMLPHP​​

助力快速掌握数据集的信息和使用方式。

数据可以如此美好!

10-30 23:56