2
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

OpenCVで簡単に動画に任意の処理ができます。

1、ビデオを読み込んで書き込む

import cv2
cap = cv2.VideoCapture('./video.mp4') #読み込む動画のパス
fps = cap.get(cv2.CAP_PROP_FPS)

fourcc = cv2.VideoWriter_fourcc('m','p','4', 'v') #mp4フォーマット
video = cv2.VideoWriter('./edited_video.mp4', fourcc, fps, (1920,1080)) #書き込み先のパス、フォーマット、fps、サイズ

avg = None

while True:
    # 1フレームずつ取得する。
    ret, frame = cap.read()
    if not ret:
        break

    #🐥 任意の処理をここに書く 🐥

    video.write(frame)

    key = cv2.waitKey(30)
    if key == 27:
        break

cap.release()
video.release()

2、処理を書く

例えば、動画をスケッチ風にするには、
1、の任意の処理のところに以下を入れます。

    #🐥 任意の処理をここに書く 🐥
    # 白黒画像に
    grayImage = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY)

    # 白黒反転
    grayImageInv = 255 - grayImage

    # ぼかしをかける
    grayImageInv = cv2.GaussianBlur(grayImageInv, (21, 21), 0)

    #blend using color dodge
    output = cv2.divide(grayImage, 255-grayImageInv, scale=256.0)
    output = cv2.cvtColor(output, cv2.COLOR_GRAY2BGR)
    video.write(output)

Dec-23-2020 18-59-56.gif

Dec-23-2020 19-01-12.gif

🐣


フリーランスエンジニアです。
お仕事のご相談こちらまで
rockyshikoku@gmail.com

Core MLを使ったアプリを作っています。
機械学習関連の情報を発信しています。

Twitter
Medium

2
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?