Из документов мой подход будет следующим:
# Import libs
import numpy as np
import matplotlib.pyplot as plt
from scipy.interpolate import griddata
from matplotlib.path import Path
from matplotlib.patches import PathPatch
# Create some example data
x = np.array([1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,6,6,6,6])
y = np.array([1,2,3,4,2,3,4,5,3,4,5,6,4,5,6,7,5,6,7,8,6,7,8,9])
z = np.linspace(0,100,len(y))
# Grid and interpolate between points
yi, xi = np.mgrid[int(y.min()):int(y.max()),int(x.min()):int(x.max())]
zi = griddata((x, y), z, (xi, yi), method='nearest')
# Plot the figure
im = plt.imshow(
zi, extent=[x.min(), x.max(), y.min(), y.max()],
origin="lower", interpolation='bicubic', aspect='auto',
clip_path=patch, clip_on=True)
plt.colorbar()
path = Path([[1, 1], [1, 4], [6, 9], [6, 6], [1, 1]])
patch = PathPatch(path, facecolor='none')
plt.gca().add_patch(patch)
im.set_clip_path(patch)
Для расчета углов вашей области вы можетеопределите функцию:
def corners(x, y):
xl = np.min(x)
yl = np.min(y)
xh = np.max(x)
yh = np.max(y)
return [[xl, yl], [xl, np.max(y[x==xl])], [xh, yh], [xh, np.min(y[x==xh])], [xl, yl]]
и замените явные точки в патче следующим:
...
path = Path(corners(x, y))
...
РЕДАКТИРОВАТЬ:
с
patch = PathPatch(path, facecolor='none', edgecolor='none')
вы можетечисто клип, без необходимости показывать края клиппата.