Mercurial > ift6266
view scripts/imgbg_test.py @ 184:81f8466dc121
Transient exception handling in captchas (ie. lorsque le NFS est temporairement inaccessible)
author | boulanni <nicolas_boulanger@hotmail.com> |
---|---|
date | Sat, 27 Feb 2010 19:26:26 -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