Read images videos and webcam

πŸ§™ Getting an image:

img = cv2.imread("Resources/Wally.jpg")
#img = cv2.resize(img, (960,540))
cv2.imshow("Output", img)
cv2.waitKey(0)

πŸŽ₯ Playing video from a file

import numpy as np
import cv2

cap = cv2.VideoCapture('vtest.avi')

while(cap.isOpened()):
    ret, frame = cap.read()

    gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY)

    cv2.imshow('frame',gray)
    if cv2.waitKey(1) & 0xFF == ord('q'):
        break

cap.release()
cv2.destroyAllWindows()

πŸ“· Capturing a video:

Last updated

Was this helpful?