view scripts/imgbg_test.py @ 231:6f4e3719a3cc

Added the possibility to get the paths from an env. variable + cleaned up the way we build the paths
author Dumitru Erhan <dumitru.erhan@gmail.com>
date Sat, 13 Mar 2010 15:44:50 -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