Compare two images, returns true if the each of the pixels are equal, false otherwise
Namespace:
Emgu.CV
Assembly:
Emgu.CV (in Emgu.CV.dll) Version: 2.0.1.0 (2.0.1.0)
Syntax
C# |
---|
public bool Equals(
Image<TColor, TDepth> img2
) |
Visual Basic (Declaration) |
---|
Public Function Equals ( _
img2 As Image(Of TColor, TDepth) _
) As Boolean |
Visual C++ |
---|
public:
virtual bool Equals(
Image<TColor, TDepth>^ img2
) sealed |
Return Value
true if the each of the pixels for the two images are equal, false otherwise
Implements
IEquatable<(Of <(T>)>)..::.Equals(T)
See Also