Create a GpuMat of the specified size

Namespace: Emgu.CV.GPU
Assembly: Emgu.CV.GPU (in Emgu.CV.GPU.dll) Version: 2.2.1.1150 (2.2.1.1150)

Syntax

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

Parameters

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

See Also