kivanccakmak / plate_track

Garage Application to read plate value on car

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

#plate-track

Ultimate goal is constructing a software for autonomous garage door which would use alive camera to recognize entering car and ardunio to open the door.

Currently, offline plate recording is done.


**_sqlite3_** used to create database
**_pyqt_** used to introduce user interface
**_openalpr_** is used to recognize car plates

OpenAlpr's python inteface was extremely slow in my PC, for this reason I used system call with subprocess library and parsed stdout in plate_reader.py as following:

cmd = 'alpr -c eu picture.png'
proc = subprocess.Popen([cmd], stdout=subprocess.PIPE, shell=True)

##Dependencies

openalpr
python-qt4

##Usage

sudo ./install.sh
python ui.py

##Screenshots

About

Garage Application to read plate value on car


Languages

Language:Python 98.3%Language:Shell 1.7%