[This is preliminary documentation and is subject to change.]

Delegate used to allocate data by OpenCV

Namespace:  Emgu.CV
Assembly:  Emgu.CV (in Emgu.CV.dll) Version: 2.0.0.0 (2.0.0.0)

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