Mercurial > ift6266
view scripts/imgbg_test.py @ 338:fca22114bb23
added async save, restart from old model and independant error calculation based on Arnaud's iterator
author | xaviermuller |
---|---|
date | Sat, 17 Apr 2010 12:42:48 -0400 |
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