CudaInvokeGpuMatReshape Method |
http://www.emgu.com
gpuMatReshape the src GpuMat
Namespace: Emgu.CV.CudaAssembly: Emgu.CV.Cuda (in Emgu.CV.Cuda.dll) Version: 3.0.0.2161 (3.0.0.2161)
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