One minute
opencv ランダムノイズ画像の生成
忘れるので備忘録
コード
import cv2
import numpy as np
from tqdm import tqdm
h, w = 400, 600
size = (w, h)
fps = 60
filename = "hoge.mp4"
fourcc = cv2.VideoWriter_fourcc(*"mp4v")
video = cv2.VideoWriter(filename, fourcc, fps, size)
for _ in tqdm(range(fps * 10)):
img = np.random.randint(0, 256, (h, w, 3), np.uint8)
video.write(img)
video.release()
画像を用いる場合
img = cv2.imread("path/to/img", 1)
h, w, _ = img.shape
memo
- 出力動画のバイト数が 0 なのは入出力のサイズが合っていないのが原因
- 動画のコーデックは
avc1
の方がいい時もある
Read other posts