CudaInvokeGetSubRect Method |
http://www.emgu.com
Returns header, corresponding to a specified rectangle of the input GpuMat. 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.0.3408 (4.1.0.3408)
Syntaxpublic static IntPtr GetSubRect(
IntPtr mat,
ref Rectangle rect
)
Public Shared Function GetSubRect (
mat As IntPtr,
ByRef rect As Rectangle
) As IntPtr
public:
static IntPtr GetSubRect(
IntPtr mat,
Rectangle% rect
)
static member GetSubRect :
mat : IntPtr *
rect : Rectangle byref -> IntPtr
Parameters
- mat
- Type: SystemIntPtr
Input GpuMat - rect
- Type: System.DrawingRectangle
Zero-based coordinates of the rectangle of interest.
Return Value
Type:
IntPtrPointer to the resultant sub-array header.
See Also