How to insert a small image on the corner of a plot with matplotlib?
If you want the image at the corner of your actual figure (rather than the corner of your axis), look into figimage. Perhaps something like this? (using PIL to read the image): import matplotlib.pyplot as plt import Image import numpy as np im = Image.open(‘/home/jofer/logo.png’) height = im.size[1] # We need a float array between … Read more