179

I am trying to read an image with scipy. However it does not accept the scipy.misc.imread part. What could be the cause of this?

>>> import scipy
>>> scipy.misc
<module 'scipy.misc' from 'C:\Python27\lib\site-packages\scipy\misc\__init__.pyc'>
>>> scipy.misc.imread('test.tif')
Traceback (most recent call last):
  File "<pyshell#11>", line 1, in <module>
    scipy.misc.imread('test.tif')
AttributeError: 'module' object has no attribute 'imread'
smci
  • 32,567
  • 20
  • 113
  • 146
ustroetz
  • 5,802
  • 16
  • 47
  • 74
  • which version of scipy are you using? `scipy.__version__` gives `0.9.0` for me and i cannot reproduce your problem – hannes Mar 11 '13 at 18:27
  • do you get the same error if you do `from scipy.misc import imread`, and then `imread('test.tif')` ? – karthikr Mar 11 '13 at 18:27
  • @karthikr yes, I get the same error for that. – ustroetz Mar 11 '13 at 18:29
  • I can reproduce the problem on scipy version `0.10.1`. – Wilduck Mar 11 '13 at 18:29
  • I am using scipy version 0.11.0 – ustroetz Mar 11 '13 at 18:29
  • 4
    I think this function depends on PIL (http://www.pythonware.com/products/pil/) being installed. Do you have PIL? – Wilduck Mar 11 '13 at 18:32
  • No I don't. I will install it and give it a try. – ustroetz Mar 11 '13 at 18:33
  • I installed pip install scipy==1.0.0 which works – Dhiren Hamal May 23 '19 at 07:41
  • 12
    `imread` was deprecated in SciPy 1.0.0, and is removed in 1.2.0. Use ``imageio.imread`` instead. – Manas Oct 03 '19 at 14:30
  • @Manas Bhardwaj, Is `imageio` a replacement for scipy's `misc`? Because, in `scipy.misc` there was `imresize` functionality, which is not there in `imageio`. Can someone help me with this? Thank you. – saichand Apr 23 '20 at 03:42
  • Apparently, I found that imageio is not a replacement for the scipy.misc. Alternative for imresize of scipy.misc can be found in PIL library. [refer this link](https://stackoverflow.com/questions/57414277/alternative-to-scipy-misc-imresize) for imresize alternative – saichand Apr 23 '20 at 04:14

18 Answers18

169

imread is deprecated in SciPy 1.0.0, and will be removed in 1.2.0. Use imageio.imread instead.

import imageio
im = imageio.imread('astronaut.png')
im.shape  # im is a numpy array
(512, 512, 3)
imageio.imwrite('imageio:astronaut-gray.jpg', im[:, :, 0])
Keith Prussing
  • 803
  • 8
  • 19
Shadab
  • 1,799
  • 1
  • 8
  • 7
  • 31
    SciPy's imread used to return a numpy.ndarray. imageio.imread returns imageio.core.util.Array. If you want/need a numpy.ndarray and don't want to convert it, use matplotlib.pyplot.imread, as it also returns a numpy.ndarray. – Stefan Jan 20 '19 at 14:55
  • 3
    I have a similar problem here, but with respect to `imresize`. Previously, `scipy.misc.imresize` works. Now it is deprecated and where will I get an alternative for this? – saichand Apr 23 '20 at 03:46
  • It's a joke @saichand – filip May 07 '20 at 13:49
  • 1
    @filip, I tried using the scipy.misc.imresize. It doesn't work now, but I had used it sometime back. I wish You could correct me if what I said had any mistakes in that comment rather than saying it as a joke. I am open to learning from my mistakes. What is wrong in my comment? Thank you. – saichand May 08 '20 at 09:04
  • Well I have to admit it I was a little bit frustrated with my comment at that time I wrote it :P. I meant that it's a joke they didn't provide wheels or installations below 1.0 for scipy on windows. If you're still looking to use it just use scipy==1.2.0 since it's still available there (just marked as deprecated, still works!) @saichand – filip May 11 '20 at 13:42
  • Does the `imageio.core.util.Array` have the correct dtype? Does a 8 bit image get returned at `uint8`? – Lucas Sep 04 '20 at 23:09
  • 2
    When writing your own code, use the newer alternatives. But when trying to run some code you know little about, it's easier to install an old scipy version, e.g. in conda `conda install scipy==1.2.1`. There seems to be no drop-in replacement for both imread and imresize. – Caranown Apr 01 '21 at 11:15
  • @Stefan There is virtually no difference between a `imageio.core.util.Array` (it is - in fact - a ndarray subclass) and `np.ndarray` except for the additional `_meta` field. If you don't need metadata, you can simply call `np.asarray(iio.imread(...))` to discard it; the "conversion" will be very efficient since there is nothing to convert. Also note that mpl forwards everything to pillow internally, whereas imageio may use additional backends if pillow support for a format isn't great (TIFF) or absent (raw formats, video, ...). – FirefoxMetzger Feb 03 '22 at 08:46
146

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>
Wilduck
  • 13,822
  • 10
  • 58
  • 90
  • Orz, but if I install PIL, then it will give me ` – Allan Ruin Nov 10 '14 at 09:24
  • 21
    It should be Pillow instead of PIL now. Reference: https://pillow.readthedocs.org/ – Yuchen Nov 23 '14 at 23:45
  • You saved my day-but why scipy documentation is so poor! My steps are install numpy+MKL>Pillow>Scipy all are downloaded from university of California at Irvine compiled python modules for windows. – Learner Nov 18 '16 at 10:17
  • 6
    **READ THE NEXT ANSWER** (@Shadab's answer) as well, and note that it's just `imageio`, not `scipy.imageio`. – Terry Brown Aug 26 '19 at 17:11
  • 7
    Note that this does not work with the latest version of SciPy (1.3.0). The solution from Shadab works. – Nikhil Gupta Sep 24 '19 at 09:44
  • using the imageio module worked for me. Python 3.9.2 SciPy 1.6.1 – cod3-jr Mar 20 '21 at 18:39
  • 4
    Outdated answer for any recent SciPy version (>= 1.2). – Pieter Meiresone Apr 13 '21 at 15:28
  • i cant seem to get Pillow to work atm anyhow, no matter how i install it it says there is no module Pillow, and which pillow: `pillow not found` despite it also saying when i try to reinstall: `Requirement already satisfied: Pillow in /usr/local/lib/python3.9/site-packages (8.3.1)`. so maybe thats a non standard path problem or a brew problem, but im not sure how to fix it. and the `imageio` solution just works. ive had Pillow installed and functional before in the past, so not sure whatsup. – jsky Aug 02 '21 at 14:37
62

imread is depreciated after version 1.2.0! So to solve this issue I had to install version 1.1.0.

pip install scipy==1.1.0
mahbubcseju
  • 2,200
  • 2
  • 16
  • 21
43

For Python 3, it is best to use imread in matplotlib.pyplot:

from matplotlib.pyplot import imread
MasterJedi
  • 1,618
  • 1
  • 18
  • 17
  • 5
    No, its not. MatPlotlib converts to `float`. `cv2.imread()` correctly preserves the dtype of the image. – Lucas Sep 04 '20 at 23:06
19

In case anyone encountering the same issue, please uninstall scipy and install scipy==1.1.0

$ pip uninstall scipy

$ pip install scipy==1.1.0
SuperNova
  • 25,512
  • 7
  • 93
  • 64
  • 1
    as @Pieter Meiresone removing and installing an older version is not a solution.It is may be conflict with other package that have dependency on scipy. – r.a.shehni May 16 '22 at 08:14
11

As answered misc.imread is deprecated in SciPy 1.0.0, and will be removed in 1.2.0. imageio is one option,it will return object of type :

<class 'imageio.core.util.Image'>

but instead of imageio, use cv2

import cv2
im = cv2.imread('astronaut.png')

im will be of type : <class 'numpy.ndarray'>

As numpy arrays are faster to compute.

kshitij_p
  • 111
  • 1
  • 3
9

You need the Python Imaging Library (PIL) but alas! the PIL project seems to have been abandoned. In particular, it hasn't been ported to Python 3. So if you want PIL functionality in Python 3, you'll do well do use Pillow, which is the semi-official fork of PIL and appears to be actively developed. Actually, if you need a modern PIL implementation at all I'd recommend Pillow. It's as simple as pip install pillow. As it uses the same namespace as PIL it's essentially a drop-in replacement.

How "semi-official" is this fork? you may ask. The About page of the Pillow docs say this:

As more time passes since the last PIL release, the likelihood of a new PIL release decreases. However, we’ve yet to hear an official “PIL is dead” announcement. So if you still want to support PIL, please report issues here first, then open corresponding Pillow tickets here.

Please provide a link to the first ticket so we can track the issue(s) upstream.

However, the most recent PIL release on the official PIL site is dated November 15, 2009. I think we can safely proclaim Pillow as the successor of PIL after (as of this writing) nearly eight years of no new releases. So even if you don't need Python 3 support, I suggest you eschew the ancient PIL 1.1.6 distribution available in PyPI and just install fresh, up-to-date, compatible Pillow.

Josh Hansen
  • 1,408
  • 2
  • 17
  • 20
9

Install the Pillow library by following commands:

pip install pillow

Note, the selected answer has been outdated. See the docs of SciPy

Note that Pillow (https://python-pillow.org/) is not a dependency of SciPy, but the image manipulation functions indicated in the list below are not available without it.

Steve
  • 1,448
  • 11
  • 18
4

Imread uses PIL library, if the library is installed use :

from scipy.ndimage import imread

Source: http://docs.scipy.org/doc/scipy-0.17.0/reference/generated/scipy.ndimage.imread.html

desertnaut
  • 57,590
  • 26
  • 140
  • 166
  • this works for me ! though I don't understand why my professor use "from scipy.misc import imread" and it doesn't work on my laptop – ElleryL Jan 06 '17 at 22:14
3
python -m pip install pillow

This worked for me.

Pang
  • 9,564
  • 146
  • 81
  • 122
1

You need a python image library (PIL), but now PIL only is not enough, you'd better install Pillow. This works well.

Mottie
  • 84,355
  • 30
  • 126
  • 241
  • 2
    There's a comment on the accepted answer already stating that `pillow` should be used instead of `PIL`. I don't think it's a bad idea to add it as an answer, but it would be by far more useful if you explained why. Thanks. – lrnzcig Aug 20 '16 at 14:36
1

Running the following in a Jupyter Notebook, I had a similar error message:

from skimage import data
photo_data = misc.imread('C:/Users/ers.jpg')
type(photo_data)

'error' msg:

D:\Program Files (x86)\Microsoft Visual Studio\Shared\Anaconda3_64\lib\site-packages\ipykernel_launcher.py:3: DeprecationWarning: imread is deprecated! imread is deprecated in SciPy 1.0.0, and will be removed in 1.2.0. Use imageio.imread instead. This is separate from the ipykernel package so we can avoid doing imports until

And using the following I got it solved:

import matplotlib.pyplot
photo_data = matplotlib.pyplot.imread('C:/Users/ers.jpg')
type(photo_data)
Mike
  • 698
  • 1
  • 9
  • 16
1

I have all the packages required for the image extraction on jupyter notebook, but even then it shows me the same error.

Error on Jupyter Notebook

Reading the above comments, I have installed the required packages. Please do tell if I have missed some packages.

pip3 freeze | grep -i -E "pillow|scipy|scikit-image"
Pillow==5.4.1
scikit-image==0.14.2

scipy==1.2.1
roschach
  • 8,390
  • 14
  • 74
  • 124
Raj
  • 11
  • 1
1

The solution that work for me in python 3.6 is the following

py -m pip install Pillow

Jorge Santos Neill
  • 1,635
  • 13
  • 6
1

The only way I could get the .png file I'm working with in as uint8 was with OpenCv.

cv2.imread(file) actually returned numpy.ndarray with dtype=uint8

Lucas
  • 313
  • 4
  • 12
0

You must first install the Python version compatible with scipy (<3.7). I could not use pip to install scipy version 1.0 [ I think this version is no longer supported on pip] and used conda instead:

conda install -c anaconda scipy==1.0

Then to use "imread" you need to install Pillow.

pip install pillow
Mohsen Navazani
  • 131
  • 1
  • 6
0

imread is deprecated in scipy.misc; use imageio.imread instead.

imageio provides the same functionality as Scipy. But keep in mind that some arguments need to be changed (for detailed information please check here):

  1. Instead of mode, use the pilmode keyword argument.
  2. Instead of flatten, use the as_gray keyword argument.
ziyi liu
  • 49
  • 1
  • 5
0

One way is to use PIL like this:

    from PIL import Image
    input_image = Image.open(filename)
Arash
  • 43
  • 4