Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
QingSimon committed Sep 23, 2018
0 parents commit 01d1559
Show file tree
Hide file tree
Showing 71 changed files with 121,149 additions and 0 deletions.
Binary file added picture/HSV颜色空间.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added picture/二值化后的车牌图像.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added picture/仿射变换前的图像.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added picture/仿射变换后的车牌图像.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added picture/分割出来的字符1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added picture/分割出来的字符2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added picture/分割出来的字符3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added picture/分割出来的字符4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added picture/分割出来的字符5.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added picture/分割出来的字符6.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added picture/分割出来的字符7.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added picture/初始边缘图.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added picture/剔除面积较小的轮廓.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added picture/原始图像.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added picture/原灰度图减去开运算图.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added picture/基本颜色的HSV分量范围.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added picture/字符分割错误-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added picture/字符所在的区域的车牌图像.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added picture/开运算后的灰度图像.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added picture/收缩边界后的车牌图像.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added picture/整合后的边缘图.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added picture/未提取到车牌-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added picture/未提取到车牌-2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added picture/未提取到车牌-3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added picture/标记出轮廓.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added picture/水平方向波峰图.png
Binary file added picture/竖直方向波峰图.png
Binary file added picture/车牌图像-1.png
Binary file added picture/车牌图像.png
Binary file added picture/车牌大致定位(原图).png
Binary file added picture/车牌大致定位(轮廓图)-1.png
Binary file added picture/车牌大致定位(轮廓图).png
Binary file added picture/车牌字符识别结果.png
Binary file added picture/车牌提取不完整-1.png
Binary file added picture/车牌提取不完整-2.png
Binary file added picture/车牌提取不完整-3.png
Binary file added picture/车牌识别GUI-1.png
Binary file added picture/车牌识别GUI-2.png
Binary file added picture/车牌识别GUI-3.png
Binary file added picture/高斯模糊后的灰度图像.png
9 changes: 9 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# licence-plate-recognition
## 简介
用python编写的qt界面,可实现载入图片,提取图中中国车牌(包括新能源车车牌)并识别车牌字符的功能。
## code说明
* **src**:所有代码和数据,其中predict.py为算法的主体部分,surface.py可以启动一个图形界面,从文件系统中选取图片进行车牌识别。

* **车牌识别**:车牌识别文档

* **picture**:车牌识别文档中用到的全部图片
Binary file added src/__pycache__/predict.cpython-36.pyc
Binary file not shown.
20 changes: 20 additions & 0 deletions src/config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"config":[
{
"open":1,
"blur":3,
"morphologyr":4,
"morphologyc":19,
"col_num_limit":10,
"row_num_limit":21
},
{
"open":0,
"blur":3,
"morphologyr":5,
"morphologyc":12,
"col_num_limit":10,
"row_num_limit":18
}
]
}
Loading

0 comments on commit 01d1559

Please sign in to comment.