Files
scikit-image/skimage/io/_plugins/tifffile_plugin.py
T
2012-02-21 17:53:16 -05:00

7 lines
232 B
Python

try:
from tifffile import imread, imsave
except ImportError:
raise ImportError("The tifffile module could not be found.\n"
"It can be obtained at "
"<http://www.lfd.uci.edu/~gohlke/code/tifffile.py.html>\n")