mirror of
https://github.com/wassname/scikit-image.git
synced 2026-07-28 11:25:42 +08:00
6 lines
141 B
Python
6 lines
141 B
Python
import warnings
|
|
try:
|
|
from .viewers import ImageViewer, CollectionViewer
|
|
except ImportError as e:
|
|
warnings.warn('Viewer requires Qt')
|