http://www.emgu.com
Assembly: Emgu.CV.GPU (in Emgu.CV.GPU.dll) Version: 2.3.0.1416 (2.3.0.1416)
Create a GpuImage from the specific region of image. The data is shared between the two GpuImage
Namespace: Emgu.CV.GPUAssembly: Emgu.CV.GPU (in Emgu.CV.GPU.dll) Version: 2.3.0.1416 (2.3.0.1416)
Syntax
C# |
---|
public GpuImage( GpuImage<TColor, TDepth> image, MCvSlice rowRange, MCvSlice colRange ) |
Visual Basic |
---|
Public Sub New ( _ image As GpuImage(Of TColor, TDepth), _ rowRange As MCvSlice, _ colRange As MCvSlice _ ) |
Visual C++ |
---|
public: GpuImage( GpuImage<TColor, TDepth>^ image, MCvSlice rowRange, MCvSlice colRange ) |
Parameters
- image
- Type: Emgu.CV.GPU..::..GpuImage<(Of <(<'TColor, TDepth>)>)>
The GpuImage 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.