I have a program that loads and processes lots of images, of this form:
for fn in filenames:
im = Image.open(fn)
get_some_basic_stats(im)
When run on many images the Python process ends up using large amounts of memory -- far more than any one image should account for. Needless to say this eventually results in thrashing the page file.
I assume (though I'm not 100% sure, obviously) it's because previous images are occupying memory until they are garbage collected.
Is there a way to forcibly discard them? I was unable to find one in the PIL reference. I thought of using del im but I understood this would simply remove the name 'im' from the local scope, and effectively be the same as reassigning it at the top of the loop.
weakrefmodule. It is not an answer to your question directly, but using it might allow you to bypass certain code behaviours that are otherwise unavoidable. – mac Dec 29 '11 at 8:53