MatrixTDepthEquals Method (MatrixTDepth) |
http://www.emgu.com
Return true if every element of this matrix equals elements in mat2
Namespace:
Emgu.CV
Assembly:
Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
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