1

I got this error AttributeError: module 'scipy.misc' has no attribute 'imread' I have installed and import "scipy" and "pillow" already. Why I still got this problem?

desertnaut
  • 57,590
  • 26
  • 140
  • 166
S.Xu
  • 173
  • 2
  • 3
  • 11

1 Answers1

3

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

R L W
  • 137
  • 9