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

首先,我找的数据集是中科大的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() 就可以解决。

 

相关文章:

  • 2021-12-09
  • 2021-12-17
  • 2021-05-29
  • 2021-06-11
  • 2021-09-25
  • 2021-12-19
  • 2022-12-23
  • 2021-05-10
猜你喜欢
  • 2021-12-19
  • 2021-04-16
  • 2021-12-29
  • 2021-11-16
  • 2021-06-20
  • 2021-04-04
  • 2022-01-01
相关资源
相似解决方案