Belval / CRNN

A TensorFlow implementation of https://github.com/bgshih/crnn

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

how can I lengthen the max recognition char count?

morrisxyang opened this issue · comments

I know you add char count limit (24) when load pictures. and after CNN part the image will become a tensor of size 24x512.
if I want to recognize longer text,what should I do?

Excellent question, if you go through the code, you will see that the width is padded to 100px (the value given by the paper) if you wish you can increase that value.

There's a parameter you can pass to run.py called --max_image_width.

thanks,I will try your advice.Maybe I will encounter other problems and trouble you.
Thank you for this project.