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

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

Syntax

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

Parameters

rect
Type: System.Drawing..::.Rectangle
The rectangle area of the sub-image

Return Value

A subimage which image data is shared with the current image

See Also