Skip to content

Instantly share code, notes, and snippets.

@Nithilaa
Created October 28, 2021 06:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Nithilaa/728c9c8504cb2babbcd1cdeb642c0688 to your computer and use it in GitHub Desktop.
Save Nithilaa/728c9c8504cb2babbcd1cdeb642c0688 to your computer and use it in GitHub Desktop.
#Read an image
img = cv2.imread('transformation image.jpg', 1)
#or
#img1 = cv2.imread('C:\\Users\\Admin\\Downloads\\transformation image.jpg', 1)
#Display an image
cv2.imshow('Transformation Image', img)
cv2.waitKey(0)
cv2.destroyAllWindows()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment