カメラから動画を書き出す

これもメモ.

 

import numpy as np

import cv2

 

cap = cv2.VideoCapture(0)

out = cv2.VideoWriter('output.mov',0,20,(640,480))

 

while(cap.isOpened()):

    ret, frame = cap.read()

    if ret==True:

        out.write(cv2.resize(frame,(640,480)))

        cv2.imshow('frame',frame)

        if cv2.waitKey(1) == ord('q'):

            break

    else:

        break

 

cap.release()

out.release()

cv2.destroyAllWindows()

 

これも何故かエラーを吐かれてよくわからなかったのだけど,どうも

out.write()のところでout.write(frame)としていたのがよくなかったらしい.

out.write(cv2.resize(frame, SIZE)) とすることで読み込んだ動画の大きさを変換して書き出すことができる?

Python + OpenCVで画像を作成する

OpenCVの勉強をしなければならなくなったのですが英語ページばかりでわけが分からないのでメモ.

 

Drawing Functions in OpenCV — OpenCV-Python Tutorials 1 documentation

 

このページを参考にimg(一面黒の画像)を作成するわけですが,

 

libpng warning: Image width is zero in IHDR

libpng warning: Image height is zero in IHDR

libpng error: Invalid IHDR data

 

というエラーが帰ってくる.

 

よくわからなかったのだけど img = cv2.line()等の書き方が悪かったことが判明

 

正しくは

import numpy as np
import cv2

# Create a black image
img = np.zeros((512,512,3), np.uint8)

# Draw a diagonal blue line with thickness of 5 px
cv2.line(img,(0,0),(511,511),(255,0,0),5)

cv2.rectangle(img,(384,0),(510,128),(0,255,0),3)

cv2.circle(img,(447,63),63,(0,0,255),-1)

cv2.ellipse(img,(256,256),(100,50),0,0,180,255,-1)

font = cv2.FONT_HERSHEY_SIMPLEX
cv2.putText(img,'OpenCV',(10,500),font,4,(255,255,255),2,cv2.CV_AA)


cv2.imshow('image',img)

cv2.waitKey(0)
cv2.destroyAllWindows()

 

らしいが,仕様の変更でもあったのだろうか.

忘れないようにメモ