Image.flipud#

Image.flipud() Image[source][source]#

Flip image up-down

Returns:

vertically flipped image

Return type:

Image

Example:

>>> from machinevisiontoolbox import Image
>>> img = Image([[1, 2, 3], [4, 5, 6]])
>>> img.flipud().A
array([[4, 5, 6],
       [1, 2, 3]], dtype=uint8)
Seealso:

fliplr