(self)
| 89 | assert self.bound_cap_device != None, 'Call bind_camera first' |
| 90 | |
| 91 | def toggle_input_mode(self): |
| 92 | with self.lock: |
| 93 | if self.static_file_mode: |
| 94 | self.set_mode_cam() |
| 95 | else: |
| 96 | self.set_mode_static() |
| 97 | |
| 98 | def set_mode_stretch_on(self): |
| 99 | with self.lock: |
no test coverage detected