Skip to content

Instantly share code, notes, and snippets.

@shangeth
Created December 27, 2018 05:57
Show Gist options
  • Save shangeth/4738ef3a07bfb8236cb87cff9edd3b5b to your computer and use it in GitHub Desktop.
Save shangeth/4738ef3a07bfb8236cb87cff9edd3b5b to your computer and use it in GitHub Desktop.
from skimage import io
import matplotlib.pyplot as plt
image = io.imread('https://cdn3.bigcommerce.com/s-nadnq/product_images/uploaded_images/20.jpg')
plt.imshow(image)
plt.grid(False)
plt.axis('off')
plt.show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment