Clipping images with patches

Clipping images with patches#

Demo of image that’s been clipped by a circular patch.

import matplotlib.pyplot as plt

import matplotlib.cbook as cbook
import matplotlib.patches as patches

with cbook.get_sample_data('grace_hopper.jpg') as image_file:
    image = plt.imread(image_file)

fig, ax = plt.subplots()
im = ax.imshow(image)
patch = patches.Circle((260, 200), radius=200, transform=ax.transData)
im.set_clip_path(patch)

ax.axis('off')
plt.show()
../../../_images/eea68c1a5e09433394ed27da659b7835e54185751056628f00a8d6c90dc6e8fc.png

… admonition:: References

The use of the following functions, methods, classes and modules is shown in this example:

  • matplotlib.axes.Axes.imshow / matplotlib.pyplot.imshow

  • matplotlib.artist.Artist.set_clip_path