(self)
| 23 | self.stream = WebcamVideoStream(src=src) |
| 24 | |
| 25 | def start(self): |
| 26 | # start the threaded video stream |
| 27 | return self.stream.start() |
| 28 | |
| 29 | def update(self): |
| 30 | # grab the next frame from the stream |
nothing calls this directly
no outgoing calls
no test coverage detected