added "plain" OpenCV option

This commit is contained in:
chris 2022-03-17 09:41:14 -04:00
commit 8c8f0bfcc9

View file

@ -55,12 +55,15 @@ class _DriverType(IntEnum):
DSHOW = 0
MSMF = 1
GSTREAMER = 2
OPENCV = 3
_DriverType_names = { _DriverType.DSHOW : 'DirectShow',
_DriverType.MSMF : 'Microsoft Media Foundation',
_DriverType.GSTREAMER : 'GStreamer',
_DriverType.OPENCV : 'OpenCV',
}
class _RotationType(IntEnum):
ROTATION_0 = 0
ROTATION_90 = 1