Skip to content

Instantly share code, notes, and snippets.

@ritvikmath
Created December 6, 2019 21:13
Show Gist options
  • Select an option

  • Save ritvikmath/7b7af6d2a2a1571cb28d915970b0c807 to your computer and use it in GitHub Desktop.

Select an option

Save ritvikmath/7b7af6d2a2a1571cb28d915970b0c807 to your computer and use it in GitHub Desktop.
#create a copy of my image
copyImg = img.copy()
#reverse all the rows in my image
vFlipImg = copyImg[::-1]
#show the image
plt.imshow(vFlipImg)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment