Video Writer class
When querying a property that is not supported by the backend
used by the cv.VideoWriter class, value 0 is returned.
Example
Here is how to write to a video file:
vid = cv.VideoWriter('myvideo.mpg', [640,480]);
vid.write(im); % add a frame
clear vid; % finish
|
addlistener |
Add listener for event. |
|
delete |
VideoWriter destructor |
|
eq |
== (EQ) Test handle equality. |
|
findobj |
Find objects matching specified conditions. |
|
findprop |
Find property of MATLAB handle object. |
|
ge |
>= (GE) Greater than or equal relation for handles. |
|
gt |
> (GT) Greater than relation for handles. |
|
isOpened |
Returns true if video writer has been successfully initialized |
Sealed
|
isvalid |
Test handle validity. |
|
le |
<= (LE) Less than or equal relation for handles. |
|
lt |
< (LT) Less than relation for handles. |
|
ne |
~= (NE) Not equal relation for handles. |
|
notify |
Notify listeners of event. |
|
open |
Initializes or reinitializes video writer |
|
release |
Closes the video writer |
|
write |
Writes the next video frame |