Delegate used to dellocate OpenCV memory

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 int CvFreeFunc(
	IntPtr ptr,
	IntPtr userData
)
Public Delegate Function CvFreeFunc ( _
	ptr As IntPtr, _
	userData As IntPtr _
) As Integer
public delegate int CvFreeFunc(
	IntPtr ptr, 
	IntPtr userData
)

Parameters

ptr
IntPtr
The memory to dellocate
userData
IntPtr
User data that is transparetly passed to the custom functions

Return Value

See Also