ImageTColor, TDepthEquals Method (ImageTColor, TDepth) |
http://www.emgu.com
Compare two images, returns true if the each of the pixels are equal, false otherwise
Namespace:
Emgu.CV
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntaxpublic 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
abstract Equals :
img2 : Image<'TColor, 'TDepth> -> bool
override Equals :
img2 : Image<'TColor, 'TDepth> -> bool
Parameters
- img2
- Type: Emgu.CVImageTColor, TDepth
The other image to compare with
Return Value
Type:
Booleantrue if the each of the pixels for the two images are equal, false otherwise
Implements
IEquatableTEquals(T)
See Also