CudaInvokeGpuMatReshape Method |
http://www.emgu.com
gpuMatReshape the src GpuMat
Namespace:
Emgu.CV.Cuda
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.0.1.3373 (4.0.1.3373)
Syntaxpublic static void GpuMatReshape(
IntPtr src,
IntPtr dst,
int cn,
int rows
)
Public Shared Sub GpuMatReshape (
src As IntPtr,
dst As IntPtr,
cn As Integer,
rows As Integer
)
public:
static void GpuMatReshape(
IntPtr src,
IntPtr dst,
int cn,
int rows
)
static member GpuMatReshape :
src : IntPtr *
dst : IntPtr *
cn : int *
rows : int -> unit
Parameters
- src
- Type: SystemIntPtr
The source GpuMat - dst
- Type: SystemIntPtr
The resulting GpuMat, as input it should be an empty GpuMat. - cn
- Type: SystemInt32
The new number of channels - rows
- Type: SystemInt32
The new number of rows
See Also