CudaInvokeGetRegion Method |
http://www.emgu.com
Create a GpuMat from the specific region of gpuMat. 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 static IntPtr GetRegion(
IntPtr gpuMat,
ref Range rowRange,
ref Range colRange
)
Public Shared Function GetRegion (
gpuMat As IntPtr,
ByRef rowRange As Range,
ByRef colRange As Range
) As IntPtr
public:
static IntPtr GetRegion(
IntPtr gpuMat,
Range% rowRange,
Range% colRange
)
static member GetRegion :
gpuMat : IntPtr *
rowRange : Range byref *
colRange : Range byref -> IntPtr
Parameters
- gpuMat
- Type: SystemIntPtr
The gpuMat to extract regions from. - rowRange
- Type: Emgu.CV.StructureRange
The row range. Use MCvSlice.WholeSeq for all rows. - colRange
- Type: Emgu.CV.StructureRange
The column range. Use MCvSlice.WholeSeq for all columns.
Return Value
Type:
IntPtrPointer to the GpuMat
See Also