http://www.emgu.com
Assembly: Emgu.CV.GPU (in Emgu.CV.GPU.dll) Version: 2.3.0.1416 (2.3.0.1416)
Returns a GpuMat corresponding to a specified rectangle of the current GpuMat. The data is shared with the current matrix. In other words, it allows the user to treat a rectangular part of input array as a stand-alone array.
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<TDepth> GetSubRect( Rectangle region ) |
Visual Basic |
---|
Public Function GetSubRect ( _ region As Rectangle _ ) As GpuMat(Of TDepth) |
Visual C++ |
---|
public: GpuMat<TDepth>^ GetSubRect( Rectangle region ) |
Parameters
- region
- Type: System.Drawing..::..Rectangle
Zero-based coordinates of the rectangle of interest.
Return Value
A GpuMat that represent the region of the current matrix.
Remarks
The parent GpuMat should never be released before the returned GpuMat the represent the subregion