Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ndimage missing from scipy

Tags:

python

scipy

People also ask

What is Ndimage in SciPy?

The SciPy ndimage submodule is dedicated to image processing. Here, ndimage means an n-dimensional image. Some of the most common tasks in image processing are as follows &miuns; Input/Output, displaying images. Basic manipulations − Cropping, flipping, rotating, etc.

What is MISC in SciPy?

misc) Various utilities that don't have another home. Note that the Python Imaging Library (PIL) is not a dependency of SciPy and therefore the pilutil module is not available on systems that don't have PIL installed.


You have to import the module:

import scipy.ndimage

Modules should be imported like this:

from  scipy import ndimage