Is it possible to load image in skimage (numpy matrix) format from URL without creating temporary file?
skimage itself uses temporary files: https://github.com/scikit-image/scikit-image/blob/master/skimage/io/util.py#L23
Is there any way to pass urlopen(url).read()
to imread.imread()
(or any other image reading library) directly?