__init__.pyi 962 B

12345678910111213141516171819202122232425262728293031
  1. __all__: list[str] = []
  2. import cv2
  3. # Functions
  4. def getBackendName(api: cv2.VideoCaptureAPIs) -> str: ...
  5. def getBackends() -> _typing.Sequence[cv2.VideoCaptureAPIs]: ...
  6. def getCameraBackendPluginVersion(api: cv2.VideoCaptureAPIs) -> tuple[str, int, int]: ...
  7. def getCameraBackends() -> _typing.Sequence[cv2.VideoCaptureAPIs]: ...
  8. def getStreamBackendPluginVersion(api: cv2.VideoCaptureAPIs) -> tuple[str, int, int]: ...
  9. def getStreamBackends() -> _typing.Sequence[cv2.VideoCaptureAPIs]: ...
  10. def getStreamBufferedBackendPluginVersion(api: cv2.VideoCaptureAPIs) -> tuple[str, int, int]: ...
  11. def getStreamBufferedBackends() -> _typing.Sequence[cv2.VideoCaptureAPIs]: ...
  12. def getWriterBackendPluginVersion(api: cv2.VideoCaptureAPIs) -> tuple[str, int, int]: ...
  13. def getWriterBackends() -> _typing.Sequence[cv2.VideoCaptureAPIs]: ...
  14. def hasBackend(api: cv2.VideoCaptureAPIs) -> bool: ...
  15. def isBackendBuiltIn(api: cv2.VideoCaptureAPIs) -> bool: ...