mirror of
https://github.com/wassname/scikit-image.git
synced 2026-06-29 10:45:16 +08:00
9 lines
159 B
Python
9 lines
159 B
Python
import plugin
|
|
|
|
try:
|
|
import matplotlib.pyplot as plt
|
|
except ImportError:
|
|
pass
|
|
else:
|
|
plugin.register('matplotlib', show=plt.imshow, save=plt.imsave)
|