VideoWriter Constructor (String, Int32, Size, Boolean) |
http://www.emgu.com
Create a video writer using the specific information.
On windows, it will open a codec selection dialog.
On linux, it will use the default codec for the specified filename
Namespace: Emgu.CVAssembly: Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.1.0.2282 (3.1.0.2282)
Syntaxpublic VideoWriter(
string fileName,
int fps,
Size size,
bool isColor
)
Public Sub New (
fileName As String,
fps As Integer,
size As Size,
isColor As Boolean
)
public:
VideoWriter(
String^ fileName,
int fps,
Size size,
bool isColor
)
new :
fileName : string *
fps : int *
size : Size *
isColor : bool -> VideoWriter
Parameters
- fileName
- Type: SystemString
The name of the video file to be written to - fps
- Type: SystemInt32
frame rate per second - size
- Type: System.DrawingSize
the size of the frame - isColor
- Type: SystemBoolean
true if this is a color video, false otherwise
See Also