图片合称为视频

import cv2

import os

def pic_video(args_input_path,folder_path,output_video_path):

count = 1

image_files = [os.path.join(folder_path, file) for file in os.listdir(folder_path) if file.endswith('.png')]

img = cv2.imread(image_files[0])

height = img.shape[0]

width = img.shape[1]

videoCapture = cv2.VideoCapture(args_input_path)

fps = videoCapture.get(cv2.CAP_PROP_FPS)

fourcc = cv2.VideoWriter_fourcc(*'mp4v') # 可根据需要更改视频编码器

video = cv2.VideoWriter(output_video_path, fourcc, fps, (width, height))

for image_file in image_files:

if count%100 == 0:

print(count)

img = cv2.imread(image_file)

video.write(img)

count+=1

video.release()

pic_video('/home/sunyingli/Real-ESRGAN/tools/聪明的一休_720_1280.mp4','/home/sunyingli/Real-ESRGAN/inputs/1yixiu_720_1280_cf','/home/sunyingli/Real-ESRGAN/inputs/1yixiu_720_1280_cf.mp4')

相关推荐
hyshhhh14 小时前
【算法岗面试题】深度学习中如何防止过拟合?
网络·人工智能·深度学习·神经网络·算法·计算机视觉
AndrewHZ15 小时前
【图像处理基石】什么是tone mapping?
图像处理·人工智能·算法·计算机视觉·hdr
jndingxin17 小时前
OpenCV 图形API(11)对图像进行掩码操作的函数mask()
人工智能·opencv·计算机视觉
阳光_你好17 小时前
请详细说明opencv/c++对图片缩放
c++·opencv·计算机视觉
契合qht53_shine17 小时前
OpenCV 从入门到精通(day_05)
人工智能·opencv·计算机视觉
逼子格18 小时前
五种音频器件综合对比——《器件手册--音频器件》
嵌入式硬件·音视频·硬件工程师·硬件测试·电子器件·硬件笔试真题·音频器件
xcLeigh18 小时前
OpenCV从零开始:30天掌握图像处理基础
图像处理·人工智能·python·opencv
EasyGBS19 小时前
视频设备轨迹回放平台EasyCVR打造视频智能融合新平台,驱动智慧机场迈向数字新时代
网络·人工智能·安全·音视频
新知图书19 小时前
OpenCV单窗口显示多图片
人工智能·opencv·计算机视觉
荷包蛋蛋怪19 小时前
【北京化工大学】 神经网络与深度学习 实验6 MATAR图像分类
人工智能·深度学习·神经网络·opencv·机器学习·计算机视觉·分类