CudaVideoWriterWrite Method |
http://www.emgu.com
The method write the specified image to video file. The image must have the same size and the same surface format as has been specified when opening the video writer.
Namespace:
Emgu.CV.Cuda
Assembly:
Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
Syntaxpublic void Write(
IInputArray frame,
bool lastFrame = false
)
Public Sub Write (
frame As IInputArray,
Optional lastFrame As Boolean = false
)
public:
void Write(
IInputArray^ frame,
bool lastFrame = false
)
member Write :
frame : IInputArray *
?lastFrame : bool
(* Defaults:
let _lastFrame = defaultArg lastFrame false
*)
-> unit
Parameters
- frame
- Type: Emgu.CVIInputArray
The written frame. - lastFrame (Optional)
- Type: SystemBoolean
Indicates that it is end of stream. The parameter can be ignored.
See Also