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.CudaAssembly: Emgu.CV.Cuda (in Emgu.CV.Cuda.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntaxpublic static IntPtr GetRegion(
IntPtr gpuMat,
ref MCvSlice rowRange,
ref MCvSlice colRange
)
Public Shared Function GetRegion (
gpuMat As IntPtr,
ByRef rowRange As MCvSlice,
ByRef colRange As MCvSlice
) As IntPtr
public:
static IntPtr GetRegion(
IntPtr gpuMat,
MCvSlice% rowRange,
MCvSlice% colRange
)
static member GetRegion :
gpuMat : IntPtr *
rowRange : MCvSlice byref *
colRange : MCvSlice byref -> IntPtr
Parameters
- gpuMat
- Type: SystemIntPtr
The gpuMat to extract regions from. - rowRange
- Type: Emgu.CV.StructureMCvSlice
The row range. Use MCvSlice.WholeSeq for all rows. - colRange
- Type: Emgu.CV.StructureMCvSlice
The column range. Use MCvSlice.WholeSeq for all columns.
Return Value
Type:
IntPtrPointer to the GpuMat
See Also