File size: 271 Bytes
32b0b5a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
import cv2
class VideoCamera(object):
def __init__(self):
self.video = cv2.VideoCapture(0)
def __del__(self):
self.video.release()
def get_frame(self):
ret, frame = self.video.read()
ret, jpeg = cv2.imencode('.jpg', frame)
|