Created
November 13, 2022 17:48
-
-
Save nwizugbesamson/65b73754a367553faa26138766b2e14e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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='png', help="extension name. default is 'png'.") | |
# 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)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment