mirror of
https://github.com/wassname/scikit-image.git
synced 2026-08-10 12:40:08 +08:00
7 lines
162 B
Python
7 lines
162 B
Python
try:
|
|
from .qt import QtGui as _QtGui
|
|
except ImportError as e:
|
|
raise ImportError('Viewer requires Qt')
|
|
|
|
from .viewers import ImageViewer, CollectionViewer
|