summaryrefslogtreecommitdiff
path: root/examples/images_contours_and_fields/figimage_demo.py
blob: 126c3de56e34b818c98ee968f4999f04f7178723 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
"""
=============
Figimage Demo
=============

This illustrates placing images directly in the figure, with no axes.

"""
import numpy as np
import matplotlib
import matplotlib.cm as cm
import matplotlib.pyplot as plt


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()
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback