Skip to content

Instantly share code, notes, and snippets.

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

  • Save ritvikmath/1032f642e55a92844d36fddb88bc257a to your computer and use it in GitHub Desktop.

Select an option

Save ritvikmath/1032f642e55a92844d36fddb88bc257a 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
hFlipImg = copyImg[:,::-1]
#show the image
plt.imshow(hFlipImg)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment