-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path12-camGrab.py
42 lines (35 loc) · 1.01 KB
/
12-camGrab.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
from cv2 import VideoCapture, imshow, namedWindow, imwrite, destroyWindow, waitKey
# or import *
# initialize the camera
ncams = 0
for i in range(3):
try:
cam = VideoCapture(i)
if not cam.isOpened():
print("Not open")
break
except:
print("Except")
break
ncams += 1
cam.release()
print("Cameras: ",ncams)
cn = 0 #ncams - 1
camfile = ("camGrab.png")
print("Using cam ",cn)
print("Press any key to take snapshot to ",camfile)
if ncams > 0:
cam = VideoCapture(cn) # 0,1 -> index of camera
namedWindow("cam-test") #,CV_WINDOW_AUTOSIZE)
while True:
s, img = cam.read()
if s: # frame captured without any errors
# namedWindow("cam-test") #,CV_WINDOW_AUTOSIZE)
imshow("cam-test",img)
# waitkey(0) stops until key presseed!
k = waitKey(30)
if k > 0 and k < 255:
break
destroyWindow("cam-test")
imwrite(camfile,img) #save image
cam.release()