get (cv.VideoCapture) - MATLAB File Help
cv.VideoCapture/get

Returns the specified VideoCapture property

value = cap.get(prop)

Input

Output

Note

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.

Example

All the following are equivalent:

b = cap.Brightness
b = cap.get('Brightness')
b = cap.get(10)  % enum value defined in OpenCV source code
See also
Method Details
Access public
Sealed false
Static false