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

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

Syntax

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

Parameters

mat2
Type: Emgu.CV..::.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