Skip to content
Permalink
948fdb1937
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
11 lines (6 sloc) 150 Bytes
import cv2
import numpy as np
web_cam = cv2.VideoCapture(0)
while True:
ret,frame = web_cam.read()
cv2.imshow("frame", frame)