[This is preliminary documentation and is subject to change.]

Get a submatrix corresponding to a specified rectangle

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

Syntax

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

Parameters

rect
Rectangle
the rectangle area of the sub-matrix

Return Value

A submatrix corresponding to a specified rectangle

See Also