我正在尝试在OpenCV3(Python 3.6)中编写视频。我发现这个代码贴在某处。代码有效,但是当我播放视频时,似乎每隔几秒就会插入错误的帧。它看起来像是序列的第一帧。以下是视频的外观。 (Link to video以防嵌入代码未运行)
import cv2
import argparse
import os
# Construct the argument parser and parse the arguments
ap = argparse.ArgumentParser()
ap.add_argument("-ext", "--extension", required=False, default='jpg',
help="extension name. default is 'jpg'.")
ap.add_argument("-o", "--output", required=False, default='output.mp4',
help="output video file")
args = vars(ap.parse_args())
# Arguments
dir_path = '.'
ext = args['extension']
output = args['output']
images = []
for f in os.listdir(dir_path):
if f.endswith(ext):
images.append(f)
# Determine the width and height from the first image
image_path = os.path.join(dir_path, images[0])
frame = cv2.imread(image_path)
cv2.imshow('video',frame)
height, width, channels = frame.shape
# Define the codec and create VideoWriter object
fourcc = cv2.VideoWriter_fourcc(*'mp4v') # Be sure to use lower case
out = cv2.VideoWriter(output, fourcc, 20.0, (width, height))
for image in images:
image_path = os.path.join(dir_path, image)
frame = cv2.imread(image_path)
out.write(frame) # Write out frame to video
cv2.imshow('video',frame)
if (cv2.waitKey(1) & 0xFF) == ord('q'): # Hit `q` to exit
break
# Release everything if job is finished
out.release()
cv2.destroyAllWindows()
print("The output video is {}".format(output))
这是我在Windows 10(64位)上使用的代码 #!的/ usr / local / bin目录/ python3
{{1}}
任何指针都会被欣赏
答案 0 :(得分:0)
在您的代码中,在此代码之后:
images = []
for f in os.listdir(dir_path):
if f.endswith(ext):
images.append(f)
只需添加:
images = sorted(images, key=lambda x: (int(re.sub('\D','',x)),x))
这样我们就可以获得一个排序数据。因此,视频帧将全部设置在那里的位置。别忘了import re
作为头文件。