The default size chosen by imshow yields unpleasantly small images. Fortunately, you can easily change them using the rather strangely named gcf() function:
import pylab as P
...
f = P.gcf()
f.set_figheight(16)
f.set_figwidth(16)
The default size chosen by imshow yields unpleasantly small images. Fortunately, you can easily change them using the rather strangely named gcf() function:
import pylab as P
...
f = P.gcf()
f.set_figheight(16)
f.set_figwidth(16)