Files
scikit-image/skimage/io/_plugins/tifffile_plugin.py
T
2012-06-24 16:52:22 -07:00

7 lines
227 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>\n")