OpenCV读取视频录像分解抽帧,Python

import cv2
import os

if __name__ == "__main__":
    vc = cv2.VideoCapture('test.mp4')

    if vc.isOpened():  # 是否正常打开
        print("打开ok")
    else:
        print("打开失败,程序退出")
        exit(-1)

    savedpath = 'image/'
    isExists = os.path.exists(savedpath)
    if not isExists:
        os.makedirs(savedpath)
        print("创建存储路径")
    else:
        print("路径已经存在")

    c = 1
    while True:
        ok, frame = vc.read()
        if ok:
            cv2.imwrite(savedpath+str(c) + '.jpg', frame)  # 存储为图片文件。
            c = c + 1
        else:
            print("读取失败")
            break

    print("结束")
    vc.release()

 

你可能感兴趣的:(计算机视觉,计算机图形图像,OpenCV,机器学习,opencv,python,计算机视觉)