| VideoCaptureGet Method (VideoCaptureProperties) |
Returns the specified VideoCapture property
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax public double Get(
VideoCaptureProperties propertyId
)
Public Function Get (
propertyId As VideoCaptureProperties
) As Double
public:
double Get(
VideoCaptureProperties propertyId
)
member Get :
propertyId : VideoCaptureProperties -> float
Parameters
- propertyId
- Type: OpenCvSharpVideoCaptureProperties
Property identifier from cv::VideoCaptureProperties (eg. cv::CAP_PROP_POS_MSEC, cv::CAP_PROP_POS_FRAMES, ...)
or one from @ref videoio_flags_others
Return Value
Type:
DoubleValue for the specified property. Value 0 is returned when querying a property that is not supported by the backend used by the VideoCapture instance.
See Also