Make a copy of the specific ROI (Region of Interest) from the 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> Copy(
	Rectangle roi
)
Public Function Copy ( _
	roi As Rectangle _
) As Image(Of TColor, TDepth)
public:
Image<TColor, TDepth>^ Copy(
	Rectangle roi
)

Parameters

roi
Rectangle
The roi to be copied

Return Value

The roi region on the image

See Also