Can OCR software reliably read values from a table?

前端 未结 8 473
暗喜
暗喜 2020-12-04 18:41

Would OCR Software be able to reliably translate an image such as the following into a list of values?
\"Table

8条回答
  •  独厮守ぢ
    2020-12-04 19:14

    You could try other approach. With tesseract (or other OCRS) you can get coordinates for each word. Then you can try to group those words by vercital and horizontal coordinates to get rows/columns. For example to tell a difference between a white space and tab space. It takes some practice to get good results but it is possible. With this method you can detect tables even if the tables use invisible separators - no lines. The word coordinates are solid base for table recog

提交回复
热议问题