mirror of
https://github.com/wassname/scikit-image.git
synced 2026-07-02 14:15:10 +08:00
21 lines
354 B
Python
21 lines
354 B
Python
__all__ = ['imshow', 'imread', '_app_show']
|
|
|
|
import warnings
|
|
|
|
message = '''\
|
|
No plugin has been loaded. Please refer to
|
|
|
|
scikits.image.io.plugins()
|
|
|
|
for a list of available plugins.'''
|
|
|
|
|
|
def imshow(*args, **kwargs):
|
|
warnings.warn(RuntimeWarning(message))
|
|
|
|
|
|
def imread(*args, **kwargs):
|
|
warnings.warn(RuntimeWarning(message))
|
|
|
|
_app_show = imshow
|