Get a subimage which image data is shared with the current image.

Namespace: Emgu.CV
Assembly: Emgu.CV (in Emgu.CV.dll) Version: 2.2.1.1150 (2.2.1.1150)

Syntax

         
 C#  Visual Basic  Visual C++ 
public Image<TColor, TDepth> GetSubRect(
	Rectangle rect
)
Public Function GetSubRect ( _
	rect As Rectangle _
) As Image(Of TColor, TDepth)
public:
Image<TColor, TDepth>^ GetSubRect(
	Rectangle rect
)

Parameters

rect
Rectangle
The rectangle area of the sub-image

Return Value

A subimage which image data is shared with the current image

See Also