python - OpenCV 3 VideoWriter 插入额外的帧

标签 python opencv

我正在尝试使用 OpenCV3 (Python 3.6) 编写视频。我发现这段代码张贴在某处。该代码有效,但是当我播放视频时,似乎每隔几秒左右就会插入错误的帧。它看起来像是序列的第一帧。这是视频的样子。 (Link to video,以防嵌入代码未运行)

<iframe width="560" height="315" src="https://www.youtube.com/embed/J3HKaQlzS8Y" frameborder="0" gesture="media" allowfullscreen></iframe>

这是我在 Windows 10(64 位)上使用的代码 #!/usr/local/bin/python3

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))

不胜感激

最佳答案

在您的代码中,在此代码之后:

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 作为头文件。

关于python - OpenCV 3 VideoWriter 插入额外的帧,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47342738/

相关文章:

python - 用gstreamer接收RTP流

c++ - OpenCV 上 SIFT 描述符的正确输出类型是什么?

python - 警告 : The Command Line Tools for Xcode don't appear to be installed; most ports will likely fail to build

Python DataFrame 如何从日期时间戳中分割或提取日期

python (PIL) : Lighten transparent image and paste to another one

python - 我们可以结合来自开放式cv和scikit-image的代码吗?

python - 重新训练 MobileNet SSD V1 COCO 后,Tensorflow 的 pb 和 pbtxt 文件不适用于 OpenCV

python - 如何用opencv增加dpi?

python - 使用 JSON 将两个 API 调用合并在一起

python - 日期时间戳无法正确读取为字符串