Merge branch 'master' of https://github.com/liuruoze/EasyPR into master-gbk

1.3
Micooz 10 years ago
commit be7689a5ec

@ -43,7 +43,7 @@ EasyPR是一个中文的开源车牌识别系统其目标是成为一个简
| linux | Micooz | 1.2 | 已跟EasyPR整合
| ios | zhoushiwei | 1.1 | [zhoushiwei/EasyPR-iOS](https://github.com/zhoushiwei/EasyPR-iOS)
| mac | zhoushiwei | 1.1 | [zhoushiwei/EasyPR](https://github.com/zhoushiwei/EasyPR)
| java | fan-wenjie | 1.2 | [fan-wenjie/EasyPR-Java](https://github.com/fan-wenjie/EasyPR-Java)
### 兼容性

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 76 KiB

@ -709,3 +709,27 @@
总图片数:120张, 未识出图片:7张, 定位率:94.1667%
平均字符差距:2.0177个, 完全匹配数:26张, 完全匹配率:23.0089%
总时间:87秒, 平均执行时间:0.725秒
2015-03-14 18:01:13
总图片数:2张, 未识出图片:1张, 定位率:50%
平均字符差距:5个, 完全匹配数:0张, 完全匹配率:0%
总时间:8秒, 平均执行时间:4秒
2015-03-14 18:01:55
总图片数:2张, 未识出图片:1张, 定位率:50%
平均字符差距:5个, 完全匹配数:0张, 完全匹配率:0%
总时间:15秒, 平均执行时间:7.5秒
2015-03-14 18:14:46
总图片数:1张, 未识出图片:1张, 定位率:0%
平均字符差距:-1.#IND个, 完全匹配数:0张, 完全匹配率:-1.#IND%
总时间:1秒, 平均执行时间:1秒
2015-03-14 18:16:41
总图片数:120张, 未识出图片:7张, 定位率:94.1667%
平均字符差距:2.0177个, 完全匹配数:26张, 完全匹配率:23.0089%
总时间:96秒, 平均执行时间:0.8秒
2015-03-14 18:21:03
总图片数:120张, 未识出图片:13张, 定位率:89.1667%
平均字符差距:2.26168个, 完全匹配数:24张, 完全匹配率:22.4299%
总时间:126秒, 平均执行时间:1.05秒
2015-03-14 18:23:34
总图片数:120张, 未识出图片:7张, 定位率:94.1667%
平均字符差距:2.0177个, 完全匹配数:26张, 完全匹配率:23.0089%
总时间:93秒, 平均执行时间:0.775秒

@ -348,13 +348,17 @@ int CPlateLocate::sobelOper(const Mat& in, Mat& out, int blurSize, int morphW, i
GaussianBlur(in, mat_blur, Size(blurSize, blurSize), 0, 0, BORDER_DEFAULT);
Mat mat_gray;
if (mat_blur.channels() == 3)
if (mat_blur.channels() == 3) {
cvtColor(mat_blur, mat_gray, CV_RGB2GRAY);
}
else
mat_gray = mat_blur;
//equalizeHist(mat_gray, mat_gray);
int scale = SOBEL_SCALE;
int delta = SOBEL_DELTA;
int ddepth = SOBEL_DDEPTH;

Loading…
Cancel
Save