occupancer / cam.py
AkshatJain1402
renamed app2
4b9a23d
raw
history blame contribute delete
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)