mirror of
https://github.com/wassname/scikit-image.git
synced 2026-07-08 04:02:33 +08:00
ENH: Add tifffile IO plugin
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
[tifffile]
|
||||
description = Open, save, or display images using tifffile.py
|
||||
provides = imread, imsave
|
||||
@@ -0,0 +1,6 @@
|
||||
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")
|
||||
Reference in New Issue
Block a user