Commit 3f03c613 authored by Gijs van der Voort's avatar Gijs van der Voort

Test file voor zwart wit

parent 1483eda2
#!/usr/bin/python
from LicensePlate import LicensePlate
from Classifier import Classifier
from cPickle import dump, load
chars = []
for i in range(9):
for j in range(100):
filename = '%04d/00991_%04d%02d.info' % (i, i, j)
plate = LicensePlate(i, j)
if hasattr(plate, 'characters'):
chars = plate.characters
for char in chars:
char.image.show()
\ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment