You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

README.md 520 B

7 years ago
7 years ago
123456789101112131415161718192021222324
  1. # 车牌识别
  2. ### Pipeline
  3. step1. 使用opencv 的 HAAR cascade 检测车牌大致位置
  4. step2. Extend 检测到的大致位置的矩形区域
  5. step3. 使用类似于mser的方式的多级二值化+ransac拟合车牌的上下边界
  6. step4. 使用CNN regression回归车牌左右边界
  7. step5. 使用CNN滑动窗切割字符
  8. step6. 使用CNN识别字符
  9. ### 简单测试方式
  10. ```python
  11. from hyperlpr import pipline as pp
  12. import cv2
  13. image = cv2.imread("filename")
  14. image,res = pp.SimpleRecognizePlate(image)
  15. ```

高性能开源中文车牌识别框架