(self)
| 29 | self.thread.daemon = True |
| 30 | |
| 31 | def start(self): |
| 32 | # start a thread to read frames from the file video stream |
| 33 | self.thread.start() |
| 34 | return self |
| 35 | |
| 36 | def update(self): |
| 37 | # keep looping infinitely |
nothing calls this directly
no outgoing calls
no test coverage detected