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
I humbly recommend you add code so people can try out with online images: