Can we use Yolo to detect and recognize text in a image

Kamel BOUYACOUB picture Kamel BOUYACOUB · Mar 24, 2017 · Viewed 21.8k times · Source

Currently I am using a deep learing model which is called "Yolov2" for object detection, and I want to use it to extract text and use save it in disk, but i don't know how to do that, if anyone know more about that, please advice me

I use Tensorflow

Thanks

Answer

vega picture vega · Mar 27, 2017

If you use the pretrained model, you would need to save those outputs and input the images into a character recognition network, if using neural net, or another approach.

What you are doing is "scene text recognition". You can check out the Reading Text in the Wild with Convolutional Neural Networks paper, here's a demo and homepage. Github user chongyangtao has a whole list of resources on the topic.