Mercurial > ift6266
diff scripts/imgbg_test.py @ 142:bb26c12bb9f6
Added other auxiliary files corruption tests
author | boulanni <nicolas_boulanger@hotmail.com> |
---|---|
date | Tue, 23 Feb 2010 14:15:47 -0500 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/scripts/imgbg_test.py Tue Feb 23 14:15:47 2010 -0500 @@ -0,0 +1,15 @@ +#!/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 +