Create a GpuMat of the specified size

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

Syntax

         
 C#  Visual Basic  Visual C++ 
public static IntPtr gpuMatCreate(
	int rows,
	int cols,
	int type
)
Public Shared Function gpuMatCreate ( _
	rows As Integer, _
	cols As Integer, _
	type As Integer _
) As IntPtr
public:
static IntPtr gpuMatCreate(
	int rows, 
	int cols, 
	int type
)

Parameters

rows
Int32
The number of rows (height)
cols
Int32
The number of columns (width)
type
Int32
The type of GpuMat

Return Value

Pointer to the GpuMat

See Also