Create a matrix of the specific size

Namespace:  Emgu.CV
Assembly:  Emgu.CV (in Emgu.CV.dll) Version: 2.1.0.649 (2.1.0.649)

Syntax

         
 C#  Visual Basic  Visual C++ 
public Matrix(
	int rows,
	int cols
)
Public Sub New ( _
	rows As Integer, _
	cols As Integer _
)
public:
Matrix(
	int rows, 
	int cols
)

Parameters

rows
Int32
The number of rows (height)
cols
Int32
The number of cols (width)

See Also