http://www.emgu.com
Creates a memory storage and returns pointer to it. Initially the storage is empty. All fields of the header, except the block_size, are set to 0.
Namespace: Emgu.CVAssembly: Emgu.CV (in Emgu.CV.dll) Version: 2.3.0.1416 (2.3.0.1416)
Syntax
C# |
---|
public static IntPtr cvCreateMemStorage(
int blockSize
) |
Visual Basic |
---|
Public Shared Function cvCreateMemStorage ( _
blockSize As Integer _
) As IntPtr |
Visual C++ |
---|
public:
static IntPtr cvCreateMemStorage(
int blockSize
) |
Parameters
- blockSize
- Type: System..::..Int32
[Missing <param name="blockSize"/> documentation for "M:Emgu.CV.CvInvoke.cvCreateMemStorage(System.Int32)"]
Return Value
Size of the storage blocks in bytes. If it is 0, the block size is set to default value - currently it is 64K.
See Also