apoorva-dave / LicensePlateDetector

Detects license plate of car and recognizes its characters
345 stars 113 forks source link

Multiple Vehicles #6

Closed mnabeel786 closed 5 years ago

mnabeel786 commented 5 years ago

Hi, When i am giving input of multiple cars(through a video)but it is generating only one frame of any random car. it should shows every car. How can i detect multiple cars in the video..

apoorva-dave commented 5 years ago

The code is implemented only for 1 car in a video. You will have to check for this as to how you can implement CCA for such scenarios.

mnabeel786 commented 5 years ago

Hi Apoorva wanted ask you one thing, that i want to take the number plate as an string and to store in my database, but the thing it is working on the image but not on the video.. here is my code can you please tell me where i am doing wrong. it is giving me an error Element 0 value is unsupported. connection = cx_Oracle.connect('nabeel/1234@localhost/xe') cursor = connection.cursor() dtime=datetime.datetime.now() cursor.execute("insert into number_plate(reg_no,tstamp) values(:licPlate,:ts)",licPlate=characters) cursor.setinputsizes(ts=cx_Oracle.TIMESTAMP) cursor.execute(None, {'ts':dtime}) connection.commit() connection.close()