Return true if every element of this matrix equals elements in mat2

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

Syntax

         
 C#  Visual Basic  Visual C++ 
public bool Equals(
	Matrix<TDepth> mat2
)
Public Function Equals ( _
	mat2 As Matrix(Of TDepth) _
) As Boolean
public:
virtual bool Equals(
	Matrix<TDepth>^ mat2
) sealed

Parameters

mat2
Matrix<(Of <(TDepth>)>)
The other matrix to compare with

Return Value

true if every element of this matrix equals elements in mat2

Implements

IEquatable<(Of <(T>)>)..::.Equals(T)

See Also