MatrixTDepthEquals Method (MatrixTDepth) |
http://www.emgu.com
Return true if every element of this matrix equals elements in mat2
Namespace: Emgu.CVAssembly: Emgu.CV (in Emgu.CV.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntaxpublic bool Equals(
Matrix<TDepth> mat2
)
Public Function Equals (
mat2 As Matrix(Of TDepth)
) As Boolean
public:
virtual bool Equals(
Matrix<TDepth>^ mat2
) sealed
abstract Equals :
mat2 : Matrix<'TDepth> -> bool
override Equals :
mat2 : Matrix<'TDepth> -> bool
Parameters
- mat2
- Type: Emgu.CVMatrixTDepth
The other matrix to compare with
Return Value
Type:
Booleantrue if every element of this matrix equals elements in
mat2Implements
IEquatableTEquals(T)
See Also