I'm new to python and I want to import an image.
import numpy as np
from scipy.misc import imread, imsave, imresize
# Read an JPEG image into a numpy array
img = imread('Cover.jpg')
print(img.dtype, img.shape)
but I face with following error: cannot import name 'imread'
I've already successfully installed numpy and scipy.