Skip to content

Instantly share code, notes, and snippets.

@letthedataconfess
Created September 20, 2021 16:29
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save letthedataconfess/a765361d96bdceb6228c3bb31d0f01ae to your computer and use it in GitHub Desktop.
img = cv2.imread("zebra.jpg")
#print(img.shape)
img = cv2.cvtColor(img, cv2.COLOR_BGR2RGB)
large = cv2.resize(img, (800, 500))
plt.imshow(large)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment