http://www.emgu.com
Assembly: Emgu.CV.GPU (in Emgu.CV.GPU.dll) Version: 2.3.0.1416 (2.3.0.1416)
Create a GpuMat from the specific region of gpuMat. The data is shared between the two GpuMat.
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 GpuMatGetRegion( IntPtr gpuMat, MCvSlice rowRange, MCvSlice colRange ) |
Visual Basic |
---|
Public Shared Function GpuMatGetRegion ( _ gpuMat As IntPtr, _ rowRange As MCvSlice, _ colRange As MCvSlice _ ) As IntPtr |
Visual C++ |
---|
public: static IntPtr GpuMatGetRegion( IntPtr gpuMat, MCvSlice rowRange, MCvSlice colRange ) |
Parameters
- gpuMat
- Type: System..::..IntPtr
The gpuMat to extract regions from.
- rowRange
- Type: Emgu.CV.Structure..::..MCvSlice
The row range. Use MCvSlice.WholeSeq for all rows.
- colRange
- Type: Emgu.CV.Structure..::..MCvSlice
The column range. Use MCvSlice.WholeSeq for all columns.