GlassyWing / text-detection-ocr

Chinese text detection and recognition based on CTPN + DENSENET using Keras and Tensor Flow,使用keras和tensorflow基于CTPN+Densenet实现的中文文本检测和识别
Apache License 2.0
284 stars 116 forks source link

请教,我看别人只用DenseNet也能做ocr识别, 为何还要加cptn? #11

Open woshi91 opened 5 years ago

woshi91 commented 5 years ago

https://ptorch.com/news/223.html https://github.com/yinchangchang/ocr_densenet

GlassyWing commented 5 years ago

densenet 是文本识别模型,只能用于识别固定大小图,且图片中文字占满的情况。若图片中存在背景,那么它无法就检测到文字了,而这就是ctpn这类文本检测模型的作用。

leolle commented 5 years ago

densenet 是文本识别模型,只能用于识别固定大小图,且图片中文字占满的情况。若图片中存在背景,那么它无法就检测到文字了,而这就是ctpn这类文本检测模型的作用。

说白了,CPTN就是给文字画个框,把文字位置给锁定。

judypol commented 5 years ago

CTPN与yolo3这个两个在文字识别上有有没有什么区别,或者效果上有啥区别?谢谢!