如何使用matplotlib调整大小并显示带有补丁的裁剪图像?

时间:2019-08-31 22:20:13

标签: python-3.x matplotlib

当我运行以下代码时,它会显示裁剪的图像,但是所显示的图像仍然具有图像的原始大小,我希望它仅显示新裁剪部分的大小。如何缩放?

import matplotlib.pyplot as plt
import matplotlib.patches as patches
import matplotlib.cbook as cbook


with cbook.get_sample_data('grace_hopper.png') 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()
`

0 个答案:

没有答案