Je voudrais tracer quelques données fictives pour pcolor sur une image png avec matplotlib.
Dans ce code, je dessine simplement une flèche (je suis novice en matière de matplotlib) :
import matplotlib.pyplot as plt
import pylab
im = plt.imread('pitch.png')
implot = plt.imshow(im)
plt.annotate("",
xy=(458, 412.2), xycoords='data',
xytext=(452.8, 363.53), textcoords='data',
arrowprops=dict(arrowstyle="<-",
connectionstyle="arc3"),
)
pylab.savefig('foo.png')
Je n'arrive pas à tracer avec pcolor sur mon png. Quelqu'un peut-il m'aider ?