Here is what I tried to do. It displayed the image as the background but it did not display the x,y plot. I also want to use another picture for my plot points.
x=[0,1,2,3,4,5]
y=[0,1,2,3,4,5]
im = plt.imread('testimage.png')
implot = plt.imshow(im)
plt.plot(x,y,'o',color='black')
plt.show()
Thanks.