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.CudaAssembly: Emgu.CV.Cuda (in Emgu.CV.Cuda.dll) Version: 3.0.0.2161 (3.0.0.2161)
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