CudaImageTColor, TDepth Constructor (Int32, Int32, Boolean) |
http://www.emgu.com
Create a CudaImage of the specific size
Namespace: Emgu.CV.CudaAssembly: Emgu.CV.Cuda (in Emgu.CV.Cuda.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntaxpublic CudaImage(
int rows,
int cols,
bool continuous
)
Public Sub New (
rows As Integer,
cols As Integer,
continuous As Boolean
)
public:
CudaImage(
int rows,
int cols,
bool continuous
)
new :
rows : int *
cols : int *
continuous : bool -> CudaImage
Parameters
- rows
- Type: SystemInt32
The number of rows (height) - cols
- Type: SystemInt32
The number of columns (width) - continuous
- Type: SystemBoolean
Indicates if the data should be continuous
See Also