(self)
| 17 | self.stopped = False |
| 18 | |
| 19 | def start(self): |
| 20 | # start the thread to read frames from the video stream |
| 21 | t = Thread(target=self.update, name=self.name, args=()) |
| 22 | t.daemon = True |
| 23 | t.start() |
| 24 | return self |
| 25 | |
| 26 | def update(self): |
| 27 | # keep looping infinitely until the thread is stopped |
nothing calls this directly
no outgoing calls
no test coverage detected