up vote 2 down vote favorite
share [g+] share [fb]

I am creating custom images that I later convert to an image pyramid for Seadragon AJAX. The images and image pyramid are created using PIL. It currently take a few hours to generate the images and image pyramid for approximately 100 pictures that have a combined width and height of about 32,000,000 by 1000 (yes, the image is very long and narrow). The performance is roughly similar another algorithm I have tried (i.e. deepzoom.py). I plan to see if python-gd would perform better due to most of its functionality being coded in C (from the GD library). I would assume a significant performance increase however I am curious to hear the opinion of others. In particular the resizing and cropping is slow in PIL (w/ Image.ANTIALIAS). Will this improve considerable if I use Python-GD?

Thanks in advance for the comments and suggestions.

EDIT: The performance difference between PIL and python-GD seems minimal. I will refactor my code to reduce performance bottlenecks and include support for multiple processors. I've tested out the python 'multiprocessing' module. Results are encouraging.

link|improve this question

Seadragon looks very cool. Can the task be split over multiple processes or multiple computer? – gnibbler Oct 13 '09 at 1:47
It can be split. I was hoping to avoid this because it requires some significant re-factoring of my code, but looks like it may be unavoidable. – Vince Oct 13 '09 at 22:06
feedback

1 Answer

up vote 1 down vote accepted

PIL is mostly in C.

Antialiasing is slow. When you turn off antialiasing, what happens to the speed?

link|improve this answer
Actually tried this after I posted. It is much quicker using BILINEAR and give comparable results aesthetically. Also, the performance of the resize method is comparable between PIL and python-GD (10% difference in speed). – Vince Oct 13 '09 at 22:05
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.