mirror of
https://github.com/wassname/scikit-image.git
synced 2026-06-28 19:33:19 +08:00
26 lines
433 B
Python
26 lines
433 B
Python
__all__ = ['imshow', 'imread', 'imsave', '_app_show']
|
|
|
|
import warnings
|
|
|
|
message = '''\
|
|
No plugin has been loaded. Please refer to
|
|
|
|
skimage.io.plugins()
|
|
|
|
for a list of available plugins.'''
|
|
|
|
|
|
def imshow(*args, **kwargs):
|
|
warnings.warn(RuntimeWarning(message))
|
|
|
|
|
|
def imread(*args, **kwargs):
|
|
warnings.warn(RuntimeWarning(message))
|
|
|
|
|
|
def imsave(*args, **kwargs):
|
|
warnings.warn(RuntimeWarning(message))
|
|
|
|
|
|
_app_show = imshow
|