车牌检测与识别:License plate detection and recognition (LPDR)

开始搞车牌的检测与识别,想边做便记录下来。

首先,我找的数据集是中科大的CCPD(Chinese City Parking Dataset)。

github

数据集对比(图片来源于作者论文)

车牌检测与识别:License plate detection and recognition (LPDR)

CCPD layout (图片来源于作者论文)

车牌检测与识别:License plate detection and recognition (LPDR)

之前找了好几个数据集,感觉这个数据集是最全最大的。下载位置都在GitHub仓库中作者有给链接。

它的标签就是图片名。

车牌检测与识别:License plate detection and recognition (LPDR)

 

项目clone下来,就遇到了第一个错误:

车牌检测与识别:License plate detection and recognition (LPDR)

原因是:pytorch的版本问题。

解决方案:

在roi_pooling.py 文件中第18行把 type(input) 修改为input.type() 就可以解决。