File size: 140 Bytes
4e39fb3
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
import cv2 as cv
import numpy as n

cap=cv.VideoCapture(0)

while True:
    success,img=cap.read()
    cv.imshow("Video",img)
cv2.waitKey(1)