When i try to save an image using Scipy.misc.imsave('path',image).
I got this Error : module 'scipy.misc' has no attribute.
I am working on Ubuntu 17.10 and i have both pillow and scipy installed. Can you help me please.
When i try to save an image using Scipy.misc.imsave('path',image).
I got this Error : module 'scipy.misc' has no attribute.
I am working on Ubuntu 17.10 and i have both pillow and scipy installed. Can you help me please.
scipy.misc.imsave
has been deprecated since SciPy 1.0, and was removed in SciPy 1.2.
They suggest using imageio.imwrite
(from the imageio
library) instead.