http://www.emgu.com
Generate 4-character code of codec used to compress the frames. For example, CV_FOURCC('P','I','M','1') is MPEG-1 codec, CV_FOURCC('M','J','P','G') is motion-jpeg codec etc.
Namespace:
Emgu.CV
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.3.0.2824 (3.3.0.2824)
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
Parameters
- c1
- Type: SystemChar
C1 - c2
- Type: SystemChar
C2 - c3
- Type: SystemChar
C3 - c4
- Type: SystemChar
C4
Return Value
Type:
Int32The integer value calculated from the four cc code
See Also