xuancx 在 【学习笔记】从零开始的OCR-2——PP-OCR 中发帖
摘要:精读PP-OCR以及里面的一些技术。
论文:《PP-OCR: A Practical Ultra Lightweight OCR System》
PP-OCR 由 text detection, detected boxes rectification and text recognition组成,下图为整体框架图。
[image]
Text Detection
总体上使用 Differentiable Binarization 作为 text detector,将其中的Backbone换成了MobileNetV3 large x0.5。为什么用MobileNetV3?
理由是,在figure6中,MobileNetV3 can achieve higher accuracy when the predict time are same.
综合了性能(HMea...