Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WebcamVideoStream should be like cv2.VideoCapture #202

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion imutils/video/webcamvideostream.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
from threading import Thread
import cv2


class WebcamVideoStream:
def __init__(self, src=0, name="WebcamVideoStream"):
# initialize the video camera stream and read the first frame
Expand All @@ -16,6 +17,12 @@ def __init__(self, src=0, name="WebcamVideoStream"):
# be stopped
self.stopped = False

def get(self, var1):
return self.stream.get(var1)

def set(self, var1, var2):
return self.stream.set(var1, var2)

def start(self):
# start the thread to read frames from the video stream
t = Thread(target=self.update, name=self.name, args=())
Expand All @@ -35,7 +42,7 @@ def update(self):

def read(self):
# return the frame most recently read
return self.frame
return self.grabbed, self.frame

def stop(self):
# indicate that the thread should be stopped
Expand Down