As the title says. This is due to a lack of modules that scipy uses to read images.
Traceback (most recent call last):
File "vg_to_imdb.py", line 9, in <module>
from scipy.misc import imread, imresize
ImportError: cannot import name imread
When doing image processing with scipy, I think that such an error may occur.
pip install Pillow
I was able to solve it by installing Pillow. Reference: Stackoverflow: Importing image to python: cannot import name'imread'
Recommended Posts