VideoWriterFourCC Method (Char, Char, Char, Char)
|
Concatenates 4 chars to a fourcc code.
This static method constructs the fourcc code of the codec to be used in
the constructor VideoWriter::VideoWriter or VideoWriter::open.
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
Syntaxpublic static int FourCC(
char c1,
char c2,
char c3,
char c4
)
Public Shared Function FourCC (
c1 As Char,
c2 As Char,
c3 As Char,
c4 As Char
) As Integer
public:
static int FourCC(
wchar_t c1,
wchar_t c2,
wchar_t c3,
wchar_t c4
)
static member FourCC :
c1 : char *
c2 : char *
c3 : char *
c4 : char -> int
OpenCvSharp.VideoWriter.FourCC = function(c1, c2, c3, c4);
Parameters
- c1
- Type: SystemChar
- c2
- Type: SystemChar
- c3
- Type: SystemChar
- c4
- Type: SystemChar
Return Value
Type:
Int32
See Also