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.2.1.1150 (2.2.1.1150)

Syntax

         
 C#  Visual Basic  Visual C++ 
public bool Equals(
	Image<TColor, TDepth> img2
)
Public Function Equals ( _
	img2 As Image(Of TColor, TDepth) _
) As Boolean
public:
virtual bool Equals(
	Image<TColor, TDepth>^ img2
) sealed

Parameters

img2
Image<(Of <(<'TColor, TDepth>)>)>
The other image to compare with

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