| MatCreate Method (Size, MatType) | 
        
         
            Allocates new array data if needed.
            
 
    Namespace: 
   OpenCvSharp
    Assembly:
   OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
 Syntax
Syntaxpublic void Create(
	Size size,
	MatType type
)
Public Sub Create ( 
	size As Size,
	type As MatType
)
public:
void Create(
	Size size, 
	MatType type
)
member Create : 
        size : Size * 
        type : MatType -> unit 
function Create(size, type);
Parameters
- size
- Type: OpenCvSharpSize
 Alternative new matrix size specification: Size(cols, rows)
- type
- Type: OpenCvSharpMatType
 New matrix type.
 See Also
See Also