courao / ocr.pytorch

A pure pytorch implemented ocr project including text detection and recognition
MIT License
584 stars 133 forks source link

识别的图片是否有要求呢? #27

Open yhl-97 opened 4 years ago

yhl-97 commented 4 years ago

作者您好,我在运行您的项目识别一些图片时出现cannot identified image file错误,请问这是什么原因呢?是否对输入的图片有要求?

courao commented 4 years ago

你好,我在测试的时候没遇到过类似的问题,查了一下似乎图片本身的问题,PIL模块对这个支持不太好,jpg文件的头部不在jpeg market table中,则会报OSError,可以参考下面的链接, https://github.com/python-pillow/Pillow/issues/630

yhl-97 commented 4 years ago

谢谢您的回复,我使用的是png图片,也会存在类似的问题吗?

yhl-97 commented 4 years ago

我使用的是IAM的数据,一张图片就是一行文字,错误会和这个有关系吗?

courao commented 4 years ago

一张图片就是一行文字的数据的话可以使用recognize/crnn_recognizer.py里面的接口,就不需要文字检测的操作了,根据你的需要可以做一些修改。。

yhl-97 commented 4 years ago

好的,感谢您的指点