CvInvokecvGetSubRect Method |
http://www.emgu.com
Returns header, corresponding to a specified rectangle of the input array. In other words, it allows the user to treat a rectangular part of input array as a stand-alone array. ROI is taken into account by the function so the sub-array of ROI is actually extracted.
Namespace: Emgu.CVAssembly: Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.2.0.2682 (3.2.0.2682)
Syntax public static IntPtr cvGetSubRect(
IntPtr arr,
IntPtr submat,
Rectangle rect
)
Public Shared Function cvGetSubRect (
arr As IntPtr,
submat As IntPtr,
rect As Rectangle
) As IntPtr
public:
static IntPtr cvGetSubRect(
IntPtr arr,
IntPtr submat,
Rectangle rect
)
static member cvGetSubRect :
arr : IntPtr *
submat : IntPtr *
rect : Rectangle -> IntPtr
Parameters
- arr
- Type: SystemIntPtr
Input array - submat
- Type: SystemIntPtr
Pointer to the resultant sub-array header. - rect
- Type: System.DrawingRectangle
Zero-based coordinates of the rectangle of interest.
Return Value
Type:
IntPtrthe resultant sub-array header
See Also