Finds a file node by name

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 cvGetFileNodeByName(
	IntPtr fs,
	IntPtr map,
	string name
)
Public Shared Function cvGetFileNodeByName ( _
	fs As IntPtr, _
	map As IntPtr, _
	name As String _
) As IntPtr
public:
static IntPtr cvGetFileNodeByName(
	IntPtr fs, 
	IntPtr map, 
	String^ name
)

Parameters

fs
IntPtr
File storage
map
IntPtr
The parent map. If it is NULL, the function searches in all the top-level nodes (streams), starting from the first one.
name
String
The file node name

Return Value

Pointer to the specific file node

See Also