mirror of
https://github.com/wassname/scikit-image.git
synced 2026-06-28 23:26:08 +08:00
18 lines
395 B
Python
18 lines
395 B
Python
__all__ = ['imread']
|
|
|
|
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)
|