Returns matrix header for the input array that can be matrix - CvMat, image - IplImage or multi-dimensional dense array - CvMatND* (latter case is allowed only if allowND != 0) . In the case of matrix the function simply returns the input pointer. In the case of IplImage* or CvMatND* it initializes header structure with parameters of the current image ROI and returns pointer to this temporary structure. Because COI is not supported by CvMat, it is returned separately.

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 cvGetMat(
	IntPtr arr,
	IntPtr header,
	out int coi,
	int allowND
)
Public Shared Function cvGetMat ( _
	arr As IntPtr, _
	header As IntPtr, _
	<OutAttribute> ByRef coi As Integer, _
	allowND As Integer _
) As IntPtr
public:
static IntPtr cvGetMat(
	IntPtr arr, 
	IntPtr header, 
	[OutAttribute] int% coi, 
	int allowND
)

Parameters

arr
IntPtr
Input array
header
IntPtr
Pointer to CvMat structure used as a temporary buffer
coi
Int32 %
Optional output parameter for storing COI
allowND
Int32
If non-zero, the function accepts multi-dimensional dense arrays (CvMatND*) and returns 2D (if CvMatND has two dimensions) or 1D matrix (when CvMatND has 1 dimension or more than 2 dimensions). The array must be continuous

Return Value

Returns matrix header for the input array

See Also