This is documentation for an old release of SciPy (version 0.13.0). Read this page in the documentation of the latest stable release (version 1.15.1).
scipy.misc.imread¶
- scipy.misc.imread(name, flatten=0)[source]¶
Read an image file from a filename.
Parameters : name : str
The file name to be read.
flatten : bool, optional
If True, flattens the color layers into a single gray-scale layer.
Returns : imread : ndarray
The array obtained by reading image from file name.
Notes
The image is flattened by calling convert(‘F’) on the resulting image object.