mirror of
https://github.com/wassname/scikit-image.git
synced 2026-06-28 04:07:14 +08:00
12 lines
210 B
Python
12 lines
210 B
Python
import matplotlib.pyplot as plt
|
|
|
|
def imshow(*args, **kwargs):
|
|
kwargs.setdefault('interpolation', 'nearest')
|
|
plt.imshow(*args, **kwargs)
|
|
|
|
imread = plt.imread
|
|
show = plt.show
|
|
|
|
def _app_show():
|
|
show()
|