demo1 / cam.py
AkshatJain1402
v0.0.1
4e39fb3
raw
history blame
No virus
140 Bytes
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)