Delegate used to allocate data by OpenCV

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 delegate IntPtr CvAllocFunc(
	uint size,
	IntPtr userData
)
Public Delegate Function CvAllocFunc ( _
	size As UInteger, _
	userData As IntPtr _
) As IntPtr
public delegate IntPtr CvAllocFunc(
	unsigned int size, 
	IntPtr userData
)

Parameters

size
UInt32
Size of the memory to allocate
userData
IntPtr
User data that is transparetly passed to the custom functions

Return Value

Pointer to the allocated memort

See Also