Retrieves low-level information about the array
            
 
    Namespace: 
   OpenCvSharp
    Assembly:
   OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0.0 (1.0.0.0)
 
public void GetRawData(
	out IntPtr data,
	out int step,
	out CvSize roiSize
)
Public Sub GetRawData ( 
	<OutAttribute> ByRef data As IntPtr,
	<OutAttribute> ByRef step As Integer,
	<OutAttribute> ByRef roiSize As CvSize
)
public:
void GetRawData(
	[OutAttribute] IntPtr% data, 
	[OutAttribute] int% step, 
	[OutAttribute] CvSize% roiSize
)
member GetRawData : 
        data : IntPtr byref * 
        step : int byref * 
        roiSize : CvSize byref -> unit 
Parameters
- data
- Type: SystemIntPtr
 Output pointer to the whole image origin or ROI origin if ROI is set.
- step
- Type: SystemInt32
 Output full row length in bytes.
- roiSize
- Type: OpenCvSharpCvSize
 Output ROI size.
 
Reference