Returns image header for the input array that can be matrix - CvMat*, or image - IplImage*.

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

Syntax

C#
public static IntPtr cvGetImage(
	IntPtr arr,
	IntPtr imageHeader
)
Visual Basic (Declaration)
Public Shared Function cvGetImage ( _
	arr As IntPtr, _
	imageHeader As IntPtr _
) As IntPtr
Visual C++
public:
static IntPtr cvGetImage(
	IntPtr arr, 
	IntPtr imageHeader
)

Parameters

arr
Type: System..::.IntPtr
Input array.
imageHeader
Type: System..::.IntPtr
Pointer to IplImage structure used as a temporary buffer.

Return Value

Returns image header for the input array

See Also