In [1]:
from scipy.misc import imread as imr
from matrix_plot import matrix_plot as mplt
%pylab inline
In [2]:
img = imr('data/neo.png', flatten=True)
In [3]:
mplt(img)
In [8]:
mplt(img, figsize=(12, 12), charsize=18, brighten=4, fade=0.5)
In [ ]: