get (cv.VideoCapture) - MATLAB File Help |
Returns the specified VideoCapture property
value = cap.get(prop)
double
).
Value 0 is returned when querying a property that is not
supported by the backend used by the VideoCapture instance.Reading/writing properties involves many layers. Some unexpected
result might happens along this chain.
VideoCapture -> API Backend -> Operating System -> Device Driver -> Device Hardware
The returned value might be different from what really used by
the device or it could be encoded using device dependent rules
(eg. steps or percentage). Effective behaviour depends from
device driver and API Backend.
All the following are equivalent:
b = cap.Brightness
b = cap.get('Brightness')
b = cap.get(10) % enum value defined in OpenCV source code
Access | public |
Sealed | false |
Static | false |