summaryrefslogtreecommitdiff
path: root/numpy/numarray/nd_image.py
blob: dff7fa066fd6ae2182d61725e3882dc48861fb2f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
try:
    from ndimage import *
except ImportError:
    try:
        from scipy.ndimage import *
    except ImportError:
        msg = \
"""The nd_image package is not installed

It can be downloaded by checking out the latest source from
http://svn.scipy.org/svn/scipy/trunk/Lib/ndimage or by downloading and
installing all of SciPy from http://www.scipy.org.
"""
        raise ImportError(msg)