Allocates and initialized the CvCapture structure for reading the video stream from the specified file. After the allocated structure is not used any more it should be released by cvReleaseCapture function.

Namespace: Emgu.CV
Assembly: Emgu.CV (in Emgu.CV.dll) Version: 2.2.1.1150 (2.2.1.1150)

Syntax

         
 C#  Visual Basic  Visual C++ 
public static IntPtr cvCreateFileCapture(
	string filename
)
Public Shared Function cvCreateFileCapture ( _
	filename As String _
) As IntPtr
public:
static IntPtr cvCreateFileCapture(
	String^ filename
)

Parameters

filename
String
Name of the video file

Return Value

Pointer to the capture structure

See Also