Get a submatrix corresponding to a specified rectangle

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

Syntax

C#
[ObsoleteAttribute("Use GetSubRect instead, will be removed in the next version")]
public Matrix<TDepth> GetSubMatrix(
	Rectangle rect
)
Visual Basic (Declaration)
<ObsoleteAttribute("Use GetSubRect instead, will be removed in the next version")> _
Public Function GetSubMatrix ( _
	rect As Rectangle _
) As Matrix(Of TDepth)
Visual C++
[ObsoleteAttribute(L"Use GetSubRect instead, will be removed in the next version")]
public:
Matrix<TDepth>^ GetSubMatrix(
	Rectangle rect
)

Parameters

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

Return Value

A submatrix corresponding to a specified rectangle

See Also