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 mat. 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 GpuMat( GpuMat<TDepth> mat, MCvSlice rowRange, MCvSlice colRange ) |
Visual Basic |
---|
Public Sub New ( _ mat As GpuMat(Of TDepth), _ rowRange As MCvSlice, _ colRange As MCvSlice _ ) |
Visual C++ |
---|
public: GpuMat( GpuMat<TDepth>^ mat, MCvSlice rowRange, MCvSlice colRange ) |
Parameters
- mat
- Type: Emgu.CV.GPU..::..GpuMat<(Of <(<'TDepth>)>)>
The matrix where the region is extracted 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.