Scipy.Misc Module Has No Attribute Imread

scipy.misc module has no attribute imread?

You need to install Pillow (formerly PIL). From the docs on scipy.misc:

Note that Pillow is not a dependency of SciPy but the image manipulation functions indicated in the list below are not available without it:

...

imread

...

After installing Pillow, I was able to access imread as follows:

In [1]: import scipy.misc

In [2]: scipy.misc.imread
Out[2]: <function scipy.misc.pilutil.imread>

AttributeError: module 'scipy.misc' has no attribute 'imread'

scipy.misc.imread is depreciated in SciPy 1.0.0, and removed in Scipy 1.2.0. The documentation suggests using imageio.imread instead.

https://docs.scipy.org/doc/scipy-1.2.1/reference/generated/scipy.misc.imread.html



Related Topics



Leave a reply



Submit