Files
scikit-image/skimage/io/_plugins/gdal_plugin.py
T
Andreas Mueller f7b3d8062c COSMIT pep8
2012-06-29 11:27:23 +02:00

20 lines
415 B
Python

__all__ = ['imread']
import numpy as np
try:
import osgeo.gdal as gdal
except ImportError:
raise ImportError("The GDAL Library could not be found. "
"Please refer to http://www.gdal.org/ "
"for further instructions.")
def imread(fname, dtype=None):
"""Load an image from file.
"""
ds = gdal.Open(fname)
return ds.ReadAsArray().astype(dtype)