0
すでにこの問題を一日中戦っている人はいますか? Mathlab、python、openCVの基礎知識を持っています 私は画像からビデオを作るためにpythonを使用しています。そして、通常、問題が見つかりました。ビデオを書き込むために画像を読み込む順番はありません。たとえば、私はimg_01、img_02、..... img_nを持っています。ビデオの各imgフレーム。OpenCV +での画像のビデオシーケンス
だから、それは結果として、最終的なビデオで、完全に混沌としたのです
./img_155.jpg ./img_476.jpg ./img_282.jpg 及びその他:好きで、最終的なビデオで、それが見えています。 .. 誰でもこの問題で助けてくれますか?私は多くのヒントを見つけましたが、すべてがC++のみでした。コードは、私が今使っているものを、あります:
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 '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, 30.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))
ああ素晴らしい、その仕事を「#は、最初の画像から幅と高さを決定する」前に
あなたは次の行を追加する必要があります!しかし今、別の問題があります。順序は順調ですが、img_188 ........ img_189 ....... img_19。まあ、それは19のshoulndtはここにいるように見える、笑。この問題を解決するにはどうしたらよいでしょうか? – GGzet
img_%03d – GGzet
のファイルの名前を変更してこの問題を解決してください。私の回答があなたに役立つと感じたら、投票することをお勧めしますか? –