Notiz
Klicken Sie hier , um den vollständigen Beispielcode herunterzuladen
Ändern des Koordinatenformatierers #
Ändern Sie den Koordinatenformatierer, um den "z"-Wert des Bildes des nächsten Pixels bei gegebenen x und y zu melden. Diese Funktionalität ist standardmäßig integriert, aber es ist dennoch nützlich zu zeigen, wie die
format_coord
Funktion angepasst werden kann.
import numpy as np
import matplotlib.pyplot as plt
# Fixing random state for reproducibility
np.random.seed(19680801)
X = 10*np.random.rand(5, 3)
fig, ax = plt.subplots()
ax.imshow(X)
numrows, numcols = X.shape
def format_coord(x, y):
col = int(x + 0.5)
row = int(y + 0.5)
if 0 <= col < numcols and 0 <= row < numrows:
z = X[row, col]
return 'x=%1.4f, y=%1.4f, z=%1.4f' % (x, y, z)
else:
return 'x=%1.4f, y=%1.4f' % (x, y)
ax.format_coord = format_coord
plt.show()
Verweise
In diesem Beispiel wird die Verwendung der folgenden Funktionen, Methoden, Klassen und Module gezeigt: