Returns reference to underlying VideoCapture object. Use with caution. Prefer to use this property only to take ownership of the underlying cv2.VideoCapture object backing this object. Using the read/grab methods through this property are unsupported and will leave this obje
(self)
| 424 | |
| 425 | @property |
| 426 | def capture(self) -> cv2.VideoCapture: |
| 427 | """Returns reference to underlying VideoCapture object. Use with caution. |
| 428 | |
| 429 | Prefer to use this property only to take ownership of the underlying cv2.VideoCapture object |
| 430 | backing this object. Using the read/grab methods through this property are unsupported and |
| 431 | will leave this object in an inconsistent state. |
| 432 | """ |
| 433 | return self._cap |
| 434 | |
| 435 | # |
| 436 | # VideoStream Methods/Properties |
nothing calls this directly
no outgoing calls
no test coverage detected