Image.__gt__#
- Image.__gt__(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
>imagescalar
>imageimage
>scalar
Example:
>>> from machinevisiontoolbox import Image >>> img = Image([[1, 2], [3, 4]]) >>> (img > 2).print() 0 0 1 1 >>> (img > Image([[0, 2], [3, 4]])).print() 1 0 0 0