GpuMatTDepth Constructor (Int32, Int32, Int32, Boolean) |
http://www.emgu.com
Create a GpuMat of the specified size
Namespace:
Emgu.CV.Cuda
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntaxpublic GpuMat(
int rows,
int cols,
int channels,
bool continuous = false
)
Public Sub New (
rows As Integer,
cols As Integer,
channels As Integer,
Optional continuous As Boolean = false
)
public:
GpuMat(
int rows,
int cols,
int channels,
bool continuous = false
)
new :
rows : int *
cols : int *
channels : int *
?continuous : bool
(* Defaults:
let _continuous = defaultArg continuous false
*)
-> GpuMat
Parameters
- rows
- Type: SystemInt32
The number of rows (height) - cols
- Type: SystemInt32
The number of columns (width) - channels
- Type: SystemInt32
The number of channels - continuous (Optional)
- Type: SystemBoolean
Indicates if the data should be continuous
See Also