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@drexel.edu>
Sat, 21 Jan 2012 18:53:14 +0000 (13:53 -0500)
commit5f88f013cf4f717184e125c48ad539fba5451706
tree1a5f02ed6d312a619059c8848d6bf000073b1c87
parent1a1c5e9759dfbe80670bdd73184a60f85ce689ca
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