如何读取带有草书文字的Tiff文件或jpg文件?
我开发了一个软件,可以将 tiff
转换为 jpg
,然后读取 jpg
文件,但是该软件仅在有简单书写时才起作用jpg
文件(表示简单的英文字体),但我想阅读草书字体,所以任何人都可以帮助我摆脱这个问题。我已经尝试了很多,但我找不到任何提示,所以请帮助..我不明白我使用了哪个库?所以帮助我阅读有草书的图像。
谢谢你 维普尔乔汉
I have developed a software which will convert tiff
to jpg
and then read jpg
file, however this software only work when there is a simple writing on the jpg
file (means simple English font) but I want to read cursive fonts so any one help me to get out of this. I have tried so much and yet I cannot find any kind of hint for this so please help..I don't understand which library I used? so help me for reading image which having cursive writing.
thanking you
vipul chauhan
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
听起来您想对草书字体文档进行 OCR 。如果你指的是手写,我会立即放弃(一般来说这是一个非常困难的问题)。如果它是您拥有的特定字体(或者至少您可以创建该字体每个字母的图片数据库),那么您可以尝试使用现有的 OCR 库,该库可以使用新字体进行训练。
例如:Tesseract-OCR 或 OCropus。也可以尝试谷歌搜索“java ocr train”等。
Sounds like you want to do OCR on a cursive font document. If you mean handwriting, I'd give up immediately (a very difficult problem in general). If it IS a specific font that you posses (or at least you can create a database of pictures of each letter of that font) then you can try to use an existing OCR library that can be trained with a new font.
For example: Tesseract-OCR or OCRopus. Also try googling "java ocr train" or so.