Mercurial > ift6266
view scripts/imgbg_test.py @ 452:b0622f78cfec
Add a small paragraph mentionning the distribution differences and a figure illustrating the difference.
author | Arnaud Bergeron <abergeron@gmail.com> |
---|---|
date | Mon, 10 May 2010 13:52:57 -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