show/hide this revision's text 4 added 148 characters in body

I think you use Pil to generate an image file on the disk, and you later load it with an image reader software.

You should get a small speed improvement by rendering directly the picture in memory (you will save the cost of writing the image on the disk and then re-loading it). Have a look at this thread http://stackoverflow.com/questions/326300/python-best-library-for-drawing for how to render that image with various python modules.

I would personally try wxpython and the dc.DrawBitmap function. With using If you use such a module rather than an external image reader you will have many benefits:

  • faster

    • speed
    • you will be able to easily program a Zoomin and Zoomout
    • you can create an interactive user interface with buttons and for parameters.
    • you will be able to easily program a Zoomin and Zoomout function
    • you will be able to plot the image as you compute it, which can be quite useful if the computation takes a lot of time
show/hide this revision's text 3 deleted 68 characters in body

I think you use Pil to generate an image file on the disk, and you later load it with an image reader software.This must be pretty fast already.

Maybe you will have

You should get a small speed improvement by rendering directly the picture in memory (you will save the cost of writing the image on the disk and then re-loading it). Have a look at this thread http://stackoverflow.com/questions/326300/python-best-library-for-drawing for how to render that image with various python modules.

I would personally try wxpython and the dc.DrawBitmap function. But doing so With using such a module rather than an external image reader you will have many benefits:

  • faster
  • you will be able to easily program yourself the scaling functionsa Zoomin and Zoomout
  • you can create an interactive user interface with buttons and parameters.
show/hide this revision's text 2 added 22 characters in body

I think you use Pil to generate an image file that on the disk, and you will later view load it with an image reader software. This must be pretty fast already.

Maybe you will have a small speed improvement by rendering directly the picture in memory (you will save the cost of writing the image to on the disk and then re-loading it). Have a look at this thread http://stackoverflow.com/questions/326300/python-best-library-for-drawing for how to render that image.

I would personally try wxpython and dc.DrawBitmap. But doing so you will have to program yourself the scaling functionsas well.

show/hide this revision's text 1