Fills output variables with low-level information about the array data. All output parameters are optional, so some of the pointers may be set to NULL. If the array is IplImage with ROI set, parameters of ROI are returned.

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 static void cvGetRawData(
	IntPtr arr,
	out IntPtr data,
	out int step,
	out Size roiSize
)
Public Shared Sub cvGetRawData ( _
	arr As IntPtr, _
	<OutAttribute> ByRef data As IntPtr, _
	<OutAttribute> ByRef step As Integer, _
	<OutAttribute> ByRef roiSize As Size _
)
public:
static void cvGetRawData(
	IntPtr arr, 
	[OutAttribute] IntPtr% data, 
	[OutAttribute] int% step, 
	[OutAttribute] Size% roiSize
)

Parameters

arr
IntPtr
Array header
data
IntPtr%
Output pointer to the whole image origin or ROI origin if ROI is set
step
Int32%
Output full row length in bytes
roiSize
Size%
Output ROI size

See Also