天天看点

Robo_Eyes_license_recognize SystemRobo_Eyes_license_recognize System

Robo_Eyes_license_recognize System

一个基于ROS平台的车库管理系统

项目实现基于flask轻量级Python的Web框架,利用OpenCV进行摄像头图片截取以及保存。

通过HyperLPR实现车牌识别、数字文字分割以及识别

功能实现

  • 1 flask轻量级框架+OpenCV实现屏幕录制截图(像素存在一点小问题~)
    Robo_Eyes_license_recognize SystemRobo_Eyes_license_recognize System
  • 2 HyperLPR 通过训练好的级联分类器进行车牌是识别以及数字识别
import HyperLPR_.HyperLPRLite as pr
import cv2
import numpy as np
import csv
print ('read')
grr = cv2.imread("img/org_img.jpg")
print ('succeed read')
model = pr.LPR("HyperLPR/model/cascade.xml","HyperLPR/model/model12.h5","HyperLPR/model/ocr_plate_all_gru.h5")
for pstr,confidence,rect in model.SimpleRecognizePlateByE2E(grr):
    print confidence
    if confidence>:
        image = drawRectBox(grr, rect, pstr+" "+str(round(confidence,)))
        cv2.imwrite("./img/upload_org_img.jpg", image)
        print "plate_str:"
        print pstr
        print "plate_confidence"
        print confidence
           
Robo_Eyes_license_recognize SystemRobo_Eyes_license_recognize System
  • 3 利用 pymql 连接数据库
def get_db_conn():
    global g_db_connection
    if g_db_connection is None or not checkConn(g_db_connection):
        g_db_connection = pymysql.connect(host=config.DATABASE['host'], port=config.DATABASE['port'], user=config.DATABASE['user'], password=config.DATABASE['password'], db=config.DATABASE['db'], cursorclass=pymysql.cursors.DictCursor, charset='utf8')
    return g_db_connection

get_db_conn()
           

其中config.py为数据库信息,下载后可以根据本地mysql进行修改

DATABASE = {
    'host': '127.0.0.1',
    'port': ,
    'user': 'root',
    'password': '',
    'db': '',
}
           

模拟进入

Robo_Eyes_license_recognize SystemRobo_Eyes_license_recognize System

模拟离开

Robo_Eyes_license_recognize SystemRobo_Eyes_license_recognize System

GitHub 链接