Mercurial > ift6266
view scripts/imgbg_test.py @ 273:7800be7bce66
changes in ttf2jpg and pycaptcha to load a file list with cPickle (instead of doing a listdir()) in order to have always the same list order from different machine (to reproduce generation)
author | Xavier Glorot <glorotxa@iro.umontreal.ca> |
---|---|
date | Sun, 21 Mar 2010 16:45: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