http://www.emgu.com
Assembly: Emgu.CV (in Emgu.CV.dll) Version: 2.3.0.1416 (2.3.0.1416)
Loads object from file. It provides a simple interface to cvRead. After object is loaded, the file storage is closed and all the temporary buffers are deleted. Thus, to load a dynamic structure, such as sequence, contour or graph, one should pass a valid destination memory storage to the function.
Namespace: Emgu.CVAssembly: Emgu.CV (in Emgu.CV.dll) Version: 2.3.0.1416 (2.3.0.1416)
Syntax
C# |
---|
public static IntPtr cvLoad( string fileName, IntPtr memstorage, string name, IntPtr realName ) |
Visual Basic |
---|
Public Shared Function cvLoad ( _ fileName As String, _ memstorage As IntPtr, _ name As String, _ realName As IntPtr _ ) As IntPtr |
Visual C++ |
---|
public: static IntPtr cvLoad( String^ fileName, IntPtr memstorage, String^ name, IntPtr realName ) |
Parameters
- fileName
- Type: System..::..String
File name
- memstorage
- Type: System..::..IntPtr
Memory storage for dynamic structures, such as CvSeq or CvGraph. It is not used for matrices or images
- name
- Type: System..::..String
Optional object name. If it is NULL, the first top-level object in the storage will be loaded
- realName
- Type: System..::..IntPtr
Optional output parameter that will contain name of the loaded object (useful if name=NULL).