Prathamesh1420's picture
Create camera.py
32b0b5a verified
raw
history blame contribute delete
271 Bytes
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)