| MatGetArray Method (Int32, Int32, Int16) | 
        
         
            Get the data of this matrix as array
            
 
    Namespace: 
   OpenCvSharp
    Assembly:
   OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
 Syntax
Syntaxpublic void GetArray(
	int row,
	int col,
	short[,] data
)
Public Sub GetArray ( 
	row As Integer,
	col As Integer,
	data As Short(,)
)
public:
void GetArray(
	int row, 
	int col, 
	array<short,2>^ data
)
member GetArray : 
        row : int * 
        col : int * 
        data : int16[,] -> unit 
function GetArray(row, col, data);
Parameters
- row
- Type: SystemInt32
 
- col
- Type: SystemInt32
 
- data
- Type: SystemInt16
 
 See Also
See Also