Earlier quoted context omitted.
Can you send me a copy of what you are trying to extract? We use proprietary stuff (we're in the business of extracting data and performing analysis on invoices for waste, recycling, cellular, etc... stuff that gets "lost" in the AP department. Happy to see if our tools can help. I've tried everything on the market - DocParser, MediusFlow, KOFAX, Ephesoft, etc... none work well enough in my opinion.
I should be able to get you some files, getting approval now; can you let me know how to contact you?
Amazon Textract – Extract text and data from virtually any document
61–70 of 74 posts
Re: Amazon Textract – Extract text and data from virtually any document
#62Found some interesting tidbits in their FAQ [0]: "Q: What type of text can Amazon Textract detect and extract? A: Amazon Textract can detect Latin-script characters from the standard English alphabet and ASCII symbols." So, English only. But very worryingly is that they're going to keep your companies' documents: "Q. Are document and image inputs processed by Amazon Textract stored, and how are they used by AWS? A: A…
Re: Amazon Textract – Extract text and data from virtually any document
#63Earlier quoted context omitted.
The point of this service is to train their own OCR models for use in other products like Kindle / their e-book store. There doesn't really need to be a value add - if people use it it's a win for them... if people don't it's not really a big loss.
But in order to train something you have to have the input of what is actually there, I don’t see how that is provided here.
Re: Amazon Textract – Extract text and data from virtually any document
#64I have a personal flow using tesseract to scan docs into searchable PDFs, but it’s not that accurate. One of the main problems is that some (now most?) of the documents are in German since I live in Germany, but some are in English. There’s a way to choose the language but nothing to auto detect as far as I’m aware. I was hoping for some cloud AI service with superior OCR and simple integration or CLI (push a PDF and…
In tesseract, if you want to recognize both English and German you can use option -l deu+eng . If you want to perform language detection you can do the following: a. Invoke tesseract with "-l eng". b. Pass the output text to langdetect [1]. It is a port of Google's language detection library to Python which will give you the probabilities of the languages for a given text. c. Invoke tesseract with "-l langdetect_outp…
Re: Amazon Textract – Extract text and data from virtually any document
#65I have a personal flow using tesseract to scan docs into searchable PDFs, but it’s not that accurate. One of the main problems is that some (now most?) of the documents are in German since I live in Germany, but some are in English. There’s a way to choose the language but nothing to auto detect as far as I’m aware. I was hoping for some cloud AI service with superior OCR and simple integration or CLI (push a PDF and…
If you don't absolutely need the integration/CLI, I recommend FineReader (Standard edition). You can specify that the document can contain text from a set of languages (e.g., German and English) and it will auto-detect appropriately. If you need automation (of import, processing, export), this can be done with FineReader Server (formerly known as Recognition Server), but the pricing is quite high for personal use. Fi…
Re: Amazon Textract – Extract text and data from virtually any document
#66I have a personal flow using tesseract to scan docs into searchable PDFs, but it’s not that accurate. One of the main problems is that some (now most?) of the documents are in German since I live in Germany, but some are in English. There’s a way to choose the language but nothing to auto detect as far as I’m aware. I was hoping for some cloud AI service with superior OCR and simple integration or CLI (push a PDF and…
You can try the free ocr api at https://ocr.space/ocrapi
Re: Amazon Textract – Extract text and data from virtually any document
#67Earlier quoted context omitted.
If you don't absolutely need the integration/CLI, I recommend FineReader (Standard edition). You can specify that the document can contain text from a set of languages (e.g., German and English) and it will auto-detect appropriately. If you need automation (of import, processing, export), this can be done with FineReader Server (formerly known as Recognition Server), but the pricing is quite high for personal use. Fi…
I've heard good things about FineReader, but I'm using Linux and it doesn't look like it's available, also to automate the scanning workflow (and I can't really justify spending that much of it).
Re: Amazon Textract – Extract text and data from virtually any document
#68Announcing Amazon Textract, https://www.youtube.com/watch?v=PHX7q4pMGbo
Introducing Amazon Textract: Now in Preview, https://www.youtube.com/watch?v=hagvdqofRU4
Introducing Amazon Hieroglyph: Now in Preview (AIM363), https://www.youtube.com/watch?v=FnZFK_2oqKk
Re: Amazon Textract – Extract text and data from virtually any document
#69So this is Apache Tika as a Service? https://tika.apache.org/
Re: Amazon Textract – Extract text and data from virtually any document
#70So this is Apache Tika as a Service? https://tika.apache.org/
A little late to the comment party, but I was wondering the same. I'm working on a web scrape workflow that's currently using Tika. I'm very interested in to see how well this does in comparison.
Have you found any major problems or shortcomings in your usage?