GpuMatTDepthGetSubRect Method |
http://www.emgu.com
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.Cuda
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntaxpublic GpuMat<TDepth> GetSubRect(
Rectangle region
)
Public Function GetSubRect (
region As Rectangle
) As GpuMat(Of TDepth)
public:
GpuMat<TDepth>^ GetSubRect(
Rectangle region
)
member GetSubRect :
region : Rectangle -> GpuMat<'TDepth>
Parameters
- region
- Type: System.DrawingRectangle
Zero-based coordinates of the rectangle of interest.
Return Value
Type:
GpuMatTDepthA GpuMat that represent the region of the current matrix.
RemarksThe parent GpuMat should never be released before the returned GpuMat the represent the subregion
See Also