scipy.misc.imread

scipy.misc.imread(name, flatten=0)

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 :

: nd_array :

The array obtained by reading image.

Notes

The image is flattened by calling convert(‘F’) on the resulting image object.

Previous topic

scipy.misc.imfilter

Next topic

scipy.misc.imresize

This Page