Image.__ge__#

Image.__ge__(other) Image[source][source]#

Overloaded >= operator

Returns:

element-wise comparison of pixels

Return type:

bool Image

Compute the inequality between an Image and another image or a scalar. Supports:

  • image >= image

  • scalar >= image

  • image >= scalar

Example:

>>> from machinevisiontoolbox import Image
>>> img = Image([[1, 2], [3, 4]])
>>> (img >= 2).print()
   0 1
   1 1
>>> (img >= Image([[0, 2], [3, 4]])).print()
   1 1
   1 1
Seealso:

true false