mirror of
https://github.com/wassname/scikit-image.git
synced 2026-06-29 03:37:34 +08:00
7 lines
227 B
Python
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")
|