Not supported.
(self)
| 506 | raise NotImplementedError("Seeking is not supported.") |
| 507 | |
| 508 | def reset(self): |
| 509 | """Not supported.""" |
| 510 | raise NotImplementedError("Reset is not supported.") |
| 511 | |
| 512 | def read(self, decode: bool = True) -> np.ndarray | bool: |
| 513 | if not self._cap.isOpened(): |
nothing calls this directly
no outgoing calls
no test coverage detected