Remove pylab.ion() from plot_image.py's main().
authorW. Trevor King <wking@drexel.edu>
Sat, 21 Jan 2012 18:53:14 +0000 (13:53 -0500)
committerW. Trevor King <wking@tremily.us>
Fri, 22 Feb 2013 17:11:10 +0000 (09:11 -0800)
commit8db1f12d8bba84c697b1bf45204631343d41b66b
treedaed47892424b6f8b92aff71202304aae822cf66
parent2afc79c63765bdeab9a2b96c25e7975e52a93e21
Remove pylab.ion() from plot_image.py's main().

When pylab is in interactive mode, showing the figures does not halt
script exectution.  This means that the script will likely complete
before the user has time to appreciate the figure (unless the are
*really* fast ;)).

Also use figure/axes methods where possible (instead of pylab.axes,
etc.).  It's cleaner that way ;).
src/plot_image/plot_image.py