Figimage 演示#

这演示了将图像直接放置在图形中,没有 Axes 对象。

import matplotlib.pyplot as plt
import numpy as np

fig = plt.figure()
Z = np.arange(10000).reshape((100, 100))
Z[:, 50:] = 1

im1 = fig.figimage(Z, xo=50, yo=0, origin='lower')
im2 = fig.figimage(Z, xo=100, yo=100, alpha=.8, origin='lower')

plt.show()
figimage demo

参考

本示例展示了以下函数、方法、类和模块的使用

由 Sphinx-Gallery 生成的图库