| MatCreate Method (MatType, Int32) | 
        
         
            Allocates new array data if needed.
            
 
    Namespace: 
   OpenCvSharp
    Assembly:
   OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
 Syntax
Syntaxpublic void Create(
	MatType type,
	params int[] sizes
)
Public Sub Create ( 
	type As MatType,
	ParamArray sizes As Integer()
)
public:
void Create(
	MatType type, 
	... array<int>^ sizes
)
member Create : 
        type : MatType * 
        sizes : int[] -> unit 
function Create(type, ... sizes);
Parameters
- type
- Type: OpenCvSharpMatType
 New matrix type.
- sizes
- Type: SystemInt32
 Array of integers specifying a new array shape.
 See Also
See Also