Doc2text – Detect text blocks and OCR poorly scanned PDFs in bulk
1–10 of 21 posts
Re: Doc2text – Detect text blocks and OCR poorly scanned PDFs in bulk
#2Re: Doc2text – Detect text blocks and OCR poorly scanned PDFs in bulk
#3Re: Doc2text – Detect text blocks and OCR poorly scanned PDFs in bulk
#4This looks awesome. I've got a ghetto full text search indexer I've written that uses OCR as a fallback if it can't extract text from a pdf but as you say many times the quality is so bad it's a lost cause. I wonder if I can leverage this to improve the indexing.
Re: Doc2text – Detect text blocks and OCR poorly scanned PDFs in bulk
#5This looks awesome. I've got a ghetto full text search indexer I've written that uses OCR as a fallback if it can't extract text from a pdf but as you say many times the quality is so bad it's a lost cause. I wonder if I can leverage this to improve the indexing.
Tesseract is sadly, quite out of date. If you would like help implementing Deep Learning models for OCR let me know.
Re: Doc2text – Detect text blocks and OCR poorly scanned PDFs in bulk
#6Re: Doc2text – Detect text blocks and OCR poorly scanned PDFs in bulk
#7This looks awesome. I've got a ghetto full text search indexer I've written that uses OCR as a fallback if it can't extract text from a pdf but as you say many times the quality is so bad it's a lost cause. I wonder if I can leverage this to improve the indexing.
Tesseract is sadly, quite out of date. If you would like help implementing Deep Learning models for OCR let me know.
The difficult part of OCR'ing forms is parsing text in a variety of word-wrapped panels and boxes and converting checkboxes to text. Is that something deep learning could be trained to handle? For example, imagine parsing the huge receipt you get when you buy a car. The text itself isn't always the challenge.
Re: Doc2text – Detect text blocks and OCR poorly scanned PDFs in bulk
#8Earlier quoted context omitted.
Tesseract is sadly, quite out of date. If you would like help implementing Deep Learning models for OCR let me know.
Would you mind commenting why Tesseract is out of date? I see developers are still active on it: https://github.com/tesseract-ocr/tesseract/commits/master
Spend 1 afternoon with tesseract, and 1 afternoon with Googles text recognition API. The quality of the results is night and day.
I would love there to be an open source one that can complete, which is why I said "sadly". But if you're interested in quality of results, Deep Learning is the way to go.
Re: Doc2text – Detect text blocks and OCR poorly scanned PDFs in bulk
#9Earlier quoted context omitted.
Would you mind commenting why Tesseract is out of date? I see developers are still active on it: https://github.com/tesseract-ocr/tesseract/commits/master
There are people still working on VAX systems - are VAX systems not out of date by the same logic? Spend 1 afternoon with tesseract, and 1 afternoon with Googles text recognition API. The quality of the results is night and day. I would love there to be an open source one that can complete, which is why I said "sadly". But if you're interested in quality of results, Deep Learning is the way to go.
Re: Doc2text – Detect text blocks and OCR poorly scanned PDFs in bulk
#10This looks awesome. I've got a ghetto full text search indexer I've written that uses OCR as a fallback if it can't extract text from a pdf but as you say many times the quality is so bad it's a lost cause. I wonder if I can leverage this to improve the indexing.
OCR for indexing seems like an easier problem than perfectly accurate OCR. You could do a fuzzy search that can match similar characters (1/I/l, A/4, 0/O).