Image.__eq__#
- Image.__eq__(other) Image[source][source]#
Overloaded
==operator- Returns:
element-wise comparison of pixels
- Return type:
bool
Image
Compute the equality between an Image and another image or a scalar. Supports:
image
==imagescalar
==imageimage
==scalar
Example:
>>> from machinevisiontoolbox import Image >>> img = Image([[1, 2], [3, 4]]) >>> (img == 2).print() 0 1 0 0 >>> (img == Image([[0, 2], [3, 4]])).print() 0 1 1 1