# HG changeset patch # User boulanni # Date 1266952547 18000 # Node ID bb26c12bb9f61b4314bf952c25c54ab6290a45d0 # Parent 3346fcd3818b955f8b734c89be4a7af30f0eefdd Added other auxiliary files corruption tests diff -r 3346fcd3818b -r bb26c12bb9f6 scripts/fonts_test.py --- a/scripts/fonts_test.py Mon Feb 22 14:22:07 2010 -0500 +++ b/scripts/fonts_test.py Tue Feb 23 14:15:47 2010 -0500 @@ -1,15 +1,19 @@ +#!/usr/bin/python -import random, os +import os import ImageFont, ImageDraw, Image dir1 = "/data/lisa/data/ift6266h10/allfonts/" +#dir1 = "/Tmp/allfonts/" -img = Image.new("L", (100,100)) +img = Image.new("L", (132,132)) draw = ImageDraw.Draw(img) +L = [chr(ord('0')+x) for x in range(10)] + [chr(ord('A')+x) for x in range(26)] + [chr(ord('a')+x) for x in range(26)] for f in os.listdir(dir1): try: font = ImageFont.truetype(dir1+f, 25) - textSize = font.getsize("kD9") + for l in L: + draw.text((60,60), l, font=font, fill="white") except: print dir1+f diff -r 3346fcd3818b -r bb26c12bb9f6 scripts/imgbg_test.py --- /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 +