http://www.emgu.com
Assembly: Emgu.CV.GPU (in Emgu.CV.GPU.dll) Version: 2.3.0.1416 (2.3.0.1416)
Changes shape of GpuMat without copying data.
Namespace: Emgu.CV.GPUAssembly: Emgu.CV.GPU (in Emgu.CV.GPU.dll) Version: 2.3.0.1416 (2.3.0.1416)
Syntax
C# |
---|
public static IntPtr Reshape( IntPtr src, int newCn, int newRows ) |
Visual Basic |
---|
Public Shared Function Reshape ( _ src As IntPtr, _ newCn As Integer, _ newRows As Integer _ ) As IntPtr |
Visual C++ |
---|
public: static IntPtr Reshape( IntPtr src, int newCn, int newRows ) |
Parameters
- src
- Type: System..::..IntPtr
The GpuMat to be reshaped.
- newCn
- Type: System..::..Int32
New number of channels. newCn = 0 means that the number of channels remains unchanged.
- newRows
- Type: System..::..Int32
New number of rows. newRows = 0 means that the number of rows remains unchanged unless it needs to be changed according to newCn value.