图像转视频
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了图像转视频相关的知识,希望对你有一定的参考价值。
#encoding=utf-8 import os import cv2 import sys import glob img_root = sys.argv[1] fps = 10 fourcc = cv2.cv.CV_FOURCC(‘M‘,‘J‘,‘P‘,‘G‘) videoWriter = cv2.VideoWriter(‘output.avi‘,fourcc,fps,(1920, 1208)) img_list = glob.glob(img_root + ‘/*.png‘) for img_path in sorted(img_list): print img_path frame = cv2.imread(img_path) videoWriter.write(frame) videoWriter.release()
以上是关于图像转视频的主要内容,如果未能解决你的问题,请参考以下文章