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.CV
Assembly:  Emgu.CV (in Emgu.CV.dll) Version: 2.1.0.649 (2.1.0.649)

Syntax

         
 C#  Visual Basic  Visual C++ 
public static IntPtr cvCreateMemStorage(
	int blockSize
)
Public Shared Function cvCreateMemStorage ( _
	blockSize As Integer _
) As IntPtr
public:
static IntPtr cvCreateMemStorage(
	int blockSize
)

Parameters

blockSize
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