Re: creating garbage collectable objects (caching objects)

2009-06-29 Thread News123
Dave Angel wrote: News123 wrote: Hi. I started playing with PIL. I'm performing operations on multiple images and would like compromise between speed and memory requirement. . . . The question, that I have is whether there is any way to tell python, that certain objects could be garbage

Re: creating garbage collectable objects (caching objects)

2009-06-29 Thread Dave Angel
News123 wrote: Dave Angel wrote: News123 wrote: Hi. I started playing with PIL. I'm performing operations on multiple images and would like compromise between speed and memory requirement. . . . The question, that I have is whether there is any way to tell python, that certain

Re: creating garbage collectable objects (caching objects)

2009-06-29 Thread Gabriel Genellina
En Mon, 29 Jun 2009 08:01:20 -0300, Dave Angel da...@ieee.org escribió: News123 wrote: What I was more concerned is a group of output images depending on TWO or more input images. Depending on the platform (and the images) I might not be able to preload all two (or more images) So, as

Re: creating garbage collectable objects (caching objects)

2009-06-29 Thread Dave Angel
Gabriel Genellina wrote: div class=moz-text-flowed style=font-family: -moz-fixedEn Mon, 29 Jun 2009 08:01:20 -0300, Dave Angel da...@ieee.org escribió: News123 wrote: What I was more concerned is a group of output images depending on TWO or more input images. Depending on the platform (and

creating garbage collectable objects (caching objects)

2009-06-28 Thread News123
Hi. I started playing with PIL. I'm performing operations on multiple images and would like compromise between speed and memory requirement. The fast approach would load all images upfront and create then multiple result files. The problem is, that I do not have enough memory to load all files.

Re: creating garbage collectable objects (caching objects)

2009-06-28 Thread Terry Reedy
News123 wrote: Hi. I started playing with PIL. I'm performing operations on multiple images and would like compromise between speed and memory requirement. The fast approach would load all images upfront and create then multiple result files. The problem is, that I do not have enough memory

Re: creating garbage collectable objects (caching objects)

2009-06-28 Thread Simon Forman
On Jun 28, 11:03 am, News123 news...@free.fr wrote: Hi. I started playing with PIL. I'm performing operations on multiple images and would like compromise between speed and memory requirement. The fast approach would load all images upfront and create then multiple result files. The

Re: creating garbage collectable objects (caching objects)

2009-06-28 Thread Dave Angel
News123 wrote: Hi. I started playing with PIL. I'm performing operations on multiple images and would like compromise between speed and memory requirement. The fast approach would load all images upfront and create then multiple result files. The problem is, that I do not have enough memory