forked from rdmilligan/SaltwashAR
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebcam.py
25 lines (19 loc) · 823 Bytes
/
webcam.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
# Copyright (C) 2015 Ross D Milligan
# GNU GENERAL PUBLIC LICENSE Version 3 (full notice can be found at https://github.com/rdmilligan/SaltwashAR)
import cv2
from threading import Thread
class Webcam:
def __init__(self):
self.video_capture = cv2.VideoCapture(0)
self.video_capture.set(cv2.cv.CV_CAP_PROP_FRAME_WIDTH, 640)
self.video_capture.set(cv2.cv.CV_CAP_PROP_FRAME_HEIGHT, 480)
self.current_frame = self.video_capture.read()[1]
# create thread for capturing images
def start(self):
Thread(target=self._update_frame, args=()).start()
def _update_frame(self):
while(True):
self.current_frame = self.video_capture.read()[1]
# get the current frame
def get_current_frame(self):
return self.current_frame