view scripts/imgbg_test.py @ 203:fd1b5237e49e

Actual script used to launch images generation on 4 machines
author boulanni <nicolas_boulanger@hotmail.com>
date Thu, 04 Mar 2010 00:54:12 -0500
parents bb26c12bb9f6
children
line wrap: on
line source

#!/usr/bin/python

import Image, cPickle

f=open('/Tmp/image_net/filelist.pkl')
image_files = cPickle.load(f)
f.close()

for i in range(len(image_files)):
    filename = '/Tmp/image_net/' + image_files[i]
    try:
        image = Image.open(filename).convert('L')
    except:
        print filename