| VideoWriterSet Method |
Sets a property in the VideoWriter.
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax public bool Set(
VideoWriterProperties propId,
double value
)
Public Function Set (
propId As VideoWriterProperties,
value As Double
) As Boolean
public:
bool Set(
VideoWriterProperties propId,
double value
)
member Set :
propId : VideoWriterProperties *
value : float -> bool
Parameters
- propId
- Type: OpenCvSharpVideoWriterProperties
Property identifier from cv::VideoWriterProperties (eg. cv::VIDEOWRITER_PROP_QUALITY) or one of @ref videoio_flags_others - value
- Type: SystemDouble
Value of the property.
Return Value
Type:
Boolean`true` if the property is supported by the backend used by the VideoWriter instance.
See Also