GpuMat Constructor (GpuMat, Range, Range) |
http://www.emgu.com
Create a GpuMat from the specific region of mat. The data is shared between the two GpuMat
Namespace:
Emgu.CV.Cuda
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.0.1.3373 (4.0.1.3373)
Syntaxpublic GpuMat(
GpuMat mat,
Range rowRange,
Range colRange
)
Public Sub New (
mat As GpuMat,
rowRange As Range,
colRange As Range
)
public:
GpuMat(
GpuMat^ mat,
Range rowRange,
Range colRange
)
new :
mat : GpuMat *
rowRange : Range *
colRange : Range -> GpuMat
Parameters
- mat
- Type: Emgu.CV.CudaGpuMat
The matrix where the region is extracted from - rowRange
- Type: Emgu.CV.StructureRange
The row range. - colRange
- Type: Emgu.CV.StructureRange
The column range.
See Also