Skip to content
Snippets Groups Projects
Commit 3f03c613 authored by Gijs van der Voort's avatar Gijs van der Voort
Browse files

Test file voor zwart wit

parent 1483eda2
Branches black-white
No related tags found
No related merge requests found
#!/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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment