设计 任务书 文档 开题 答辩 说明书 格式 模板 外文 翻译 范文 资料 作品 文献 课程 实习 指导 调研 下载 网络教育 计算机 网站 网页 小程序 商城 购物 订餐 电影 安卓 Android Html Html5 SSM SSH Python 爬虫 大数据 管理系统 图书 校园网 考试 选题 网络安全 推荐系统 机械 模具 夹具 自动化 数控 车床 汽车 故障 诊断 电机 建模 机械手 去壳机 千斤顶 变速器 减速器 图纸 电气 变电站 电子 Stm32 单片机 物联网 监控 密码锁 Plc 组态 控制 智能 Matlab 土木 建筑 结构 框架 教学楼 住宅楼 造价 施工 办公楼 给水 排水 桥梁 刚构桥 水利 重力坝 水库 采矿 环境 化工 固废 工厂 视觉传达 室内设计 产品设计 电子商务 物流 盈利 案例 分析 评估 报告 营销 报销 会计
 首 页 机械毕业设计 电子电气毕业设计 计算机毕业设计 土木工程毕业设计 视觉传达毕业设计 理工论文 文科论文 毕设资料 帮助中心 设计流程 
垫片
您现在所在的位置:首页 >>计算机毕业设计 >> 文章内容
                 
垫片
   我们提供全套毕业设计和毕业论文服务,联系微信号:biyezuopin QQ:2922748026   
基于OpenCV的车牌识别系统的设计与实现 毕业论文
文章来源:www.biyezuopin.vip   发布者:毕业作品网站  

基于 OpenCV 的车牌识别系统的设计与实现

摘要 根据中国汽车工业协会统计分析,近年来汽车产销比呈现持续增长趋势。

汽车拥有率的增长给我国交通部门工作造成的压力也在持续增长,但是目前已经存在的车牌识别系统并不能很好地适应持续增长的工作量,识别效率与识别准确率也有待优化,并且人机交互页面也不够友好。为缓解交通部门日子增加的工作量、推进智能交通的推广、更加准确高效地完成车牌识别的工作,设计一款高效率且人机交互界面友好的车牌识别系统成为时代所趋。

本文设计并实现了一个基于 OpenCV(Open Source Computer Vision Library)的车牌识别系统,并设计了一个停车场仿真系统用于测试并展示车牌识别系统的识别成果。车牌识别系统可以在一般电脑上对车辆检测和车牌识别的模型进行训练,并流畅测试运行。用户可以选择一定数量的待检测图像导入到指定文件夹下, 车牌识别系统运行完成后会完成车辆检测和车牌识别工作,并将检测后图像存入指定文件夹下,将图像文件名与其对应识别信息写入表格方便查阅。停车场仿真系统会根据登录权限展示不同页面,普通用户可以进行进入、离开停车场以及计费、支付的仿真操作,管理员用户可以管理、统计、查看停车场中车辆。

本文对现有的车辆检测以及车牌识别算法进行研究,选用了较为符合需求的WPOD-Net 深度网络(Warped Planar Object Detection Network)作为车辆检测算法以及 OCRNet 深度网络(Optical Character Recognition Network)作为车牌识别算法,并使用 OpenCV 框架调用 YOLOv5 (You Only Look Once)进行模型的训

练以及部署。软件采用较为轻量便捷的 GU(I  Graphical User Interface)框架 Tkinter

开发编写停车场仿真系统,界面简单清爽,运行流畅。

关键词:深度学习 WpodNet OCRNet 车牌识别 OpenCV Tkinter


Design and Implementation of a License Plate Recognition System

Based on OpenCV

Abstract According to the statistical analysis of the China Association of Automobile Manufacturers, the automobile production sales ratio has shown a continuous growth trend in recent years. The increase in car ownership has also continued to put

pressure on the work of China's transportation department. However, the existing license plate recognition systems cannot adapt well to the continuous increase in workload, and recognition efficiency and accuracy still need to be optimized, and human-computer interaction pages are not user-friendly enough. To alleviate the increasing workload of transportation departments, promote the promotion of intelligent transportation, and complete the work of license plate recognition more accurately and efficiently, designing an efficient and user-friendly license plate recognition system has become a trend of the times.

This article designs and implements a license plate recognition system based on OpenCV, and designs a parking lot simulation system to test and display the recognition results of the license plate recognition system. The license plate recognition system can retrain the model of vehicle detection and license plate recognition on a general computer, and smoothly test and run it. Users can select a certain number of images to be detected and import them into a designated folder. After the license plate recognition system runs, it will complete the vehicle detection and license plate recognition work, and store the detected images in the designated folder. The image file name and its corresponding recognition information will be written into the table for easy reference. The parking lot simulation system will display different pages based on login permissions. Ordinary users can perform simulation operations such as entering and leaving the parking lot, as well as billing and payment. Administrator users can manage, count, and view vehicles in the parking lot.

This article conducts research on existing vehicle detection and license plate recognition algorithms, selecting WpodNet vehicle detection algorithm and OCRNet


license plate recognition algorithm that meet the requirements, and utilizing the YOLOv5 framework that extensively uses OpenCV for model training and deployment. The software adopts the relatively lightweight and convenient GUI framework Tkinter to develop and write a parking lot simulation system, with a simple and refreshing interface and smooth operation.

Key  words:  Deep  learning  WpodNet  OCRNet  License  Plate   Recognition OpenCV Tkinter


目录

第一章 绪论 1

1.1 研究背景..................................................... 1

1.2 研究现状..................................................... 2

1.3 论文结构..................................................... 3

第二章 车牌识别相关算法 5

2.1 深度学习概述................................................. 5

2.1.1 神经网络与深度学习基本概念 ............................. 5

2.1.2 卷积神经网络 ........................................... 6

2.1.3 残差神经网络 ........................................... 7

2.2 车牌检测深度网络 WPOD-NET .................................... 7

2.2.1 算法概述 ............................................... 7

2.2.2 网络结构设计 ........................................... 8

2.2.3 损失函数设计 ........................................... 9

2.3 车牌识别深度网络 OCRNet ..................................... 10

2.3.1 算法概述 .............................................. 10

2.3.2 网络结构设计 .......................................... 10

2.3.3 损失函数设计 .......................................... 11

第三章 基于 OpenCV 的车牌识别模型 12

3.1 整体方案.................................................... 12

3.3 车牌识别模型................................................ 13

3.4 实验与分析对比.............................................. 14

3.4.1 实验环境 .............................................. 14

3.4.2 实验参数设置 .......................................... 14

3.4.3 中国城市停车数据集 CCPD2019 上实验结果与分析........... 15

第四章 车牌识别系统的分析与设计 17

4.1 可行性分析.................................................. 17

4.1.1 经济可行性分析 ........................................ 17

4.1.2 技术可行性分析 ........................................ 17

4.1.3 法律可行性分析 ........................................ 17

4.1.4 环境可行性分析 ........................................ 18

4.2 软件相关技术................................................ 18

4.2.1 Python 与 Tkinter...................................... 18

4.2.2 计算机视觉库 OpenCV.................................... 18

4.2.3 机器学习库 PyTroch..................................... 19

4.2.4 科学计算库 Numpy....................................... 20

4.2.5 深度学习框架 YOLO...................................... 20


4.3 软件设计目标................................................ 21

4.4 软件功能需求分析............................................ 21

4.4.1 车牌检测模块 .......................................... 22

4.4.2 车牌识别模块 .......................................... 22

4.4.3 基于车牌识别的停车场仿真系统模块 ...................... 23

4.4 软件总体设计................................................ 24

4.5 软件功能流程图.............................................. 26

第五章 车牌识别系统软件实现 27

5.1 车牌检测算法实现............................................ 27

5.1.1 车牌检测网络实现 ...................................... 27

5.1.2 数据集的选择与训练 .................................... 27

5.2 车牌识别算法实现............................................ 30

5.2.1 车牌识别网络实现 ...................................... 30

5.2.2 数据集的选择与训练 .................................... 30

5.3 软件开发环境................................................ 31

5.4 停车场仿真模块实现.......................................... 32

5.4.1 登录界面 .............................................. 32

5.4.2 普通用户界面 .......................................... 33

5.4.3 管理员用户界面 ........................................ 35

结论 38

致谢 39

参考文献: 40






























  全套毕业设计论文现成成品资料请咨询微信号:biyezuopin QQ:2922748026     返回首页 如转载请注明来源于www.biyezuopin.vip  

                 

打印本页 | 关闭窗口
本类最新文章
基于SSM的高校疫情管理系统的设 高校疫情管理系统 需求规格说明书 高校疫情管理系统系统设计说明书
基于Spring Boot的学生 基于Spring Boot的网吧 基于UmiJS的烘焙店在线售卖管
| 关于我们 | 友情链接 | 毕业设计招聘 |

Email:biyeshejiba@163.com 微信号:biyezuopin QQ:2922748026  
本站毕业设计毕业论文资料均属原创者所有,仅供学习交流之用,请勿转载并做其他非法用途.如有侵犯您的版权有损您的利益,请联系我们会立即改正或删除有关内容!