python 图像转视频

import cv2
import matplotlib.pyplot as plt

img_root = 'result/'  # 这里写你的文件夹路径,比如:/home/youname/data/img/,注意最后一个文件夹要有斜杠
fps = 20  # 保存视频的FPS,可以适当调整
size = (640, 480)
# 可以用(*'DVIX')或(*'X264'),如果都不行先装ffmepg: sudo apt-get install ffmepg
fourcc = cv2.VideoWriter_fourcc('m', 'p', '4', 'v')
videoWriter = cv2.VideoWriter('test.mp4', fourcc, fps, size)  # 最后一个是保存图片的尺寸

# for(i=1;i<471;++i)
for i in range(1, 360):
    frame = cv2.imread(img_root + 'val9_' + str(i) + '.jpg')
    videoWriter.write(frame)
videoWriter.release()

你可能感兴趣的:(python 图像转视频)