matthewearl / deep-anpr

Using neural networks to build an automatic number plate recognition system
MIT License
1.84k stars 697 forks source link

Requirements #27

Open anselal opened 7 years ago

anselal commented 7 years ago

Hello,

for are the python requirements for running your code ? Can you provide a requirements.txt file or update the README file ? In particular I wanna know the TensorFlow and OpenCV versions.

sourabh2k15 commented 7 years ago

I have got this working with opencv 3.1 and tensorflow 1.0 , but originally this was written for older versions of both .

guddulrk commented 7 years ago

I am getting following error: pt1 = tuple(reversed(map(int, pt1)))

TypeError: argument to reversed() must be a sequence

can anyone help me please?

tintojames commented 7 years ago

Already answered this in couple of other threads ...

tuple(reversed(list(map(int, pt1))))