Hacker News new | ask | show | jobs
by yboris 2119 days ago
I love that the Colab notebook runs flawlessly!

I humbly recommend you add code so people can try out with online images:

  from skimage import io

  def get_image_from_url(url):
    # download the image using scikit-image
    print("downloading", url)
    image = io.imread(url)
    return image
1 comments

Thanks for your advice : )