Tesseract.js – A Javascript port of the Tesseract OCR engine
21–30 of 38 posts
Re: Tesseract.js – A Javascript port of the Tesseract OCR engine
#22Re: Tesseract.js – A Javascript port of the Tesseract OCR engine
#23Re: Tesseract.js – A Javascript port of the Tesseract OCR engine
#24There's a mode where you can increase the number of worker threads. Tesseract is also designed for text documents and the preprocessing filter I made to convert the images to look more like a text document was pretty naive.
I'm taking an online computer vision class next semester and hope to pick the project back up after learning a bit more.
Re: Tesseract.js – A Javascript port of the Tesseract OCR engine
#25Tesseract sucked for me. Had a simple use case where I was trying to read numbers (in a computer font) from .png files and at completely predictable locations in the image -- and Tesseract was getting it horribly wrong a huge percent of the time. Went with AWS Rekognition and results were instantly 1000x better.
Re: Tesseract.js – A Javascript port of the Tesseract OCR engine
#26Re: Tesseract.js – A Javascript port of the Tesseract OCR engine
#27I spend 2 months 2 years ago on building a passport data extractor. For KYC (know your customer) purposes. Unfortunately I did not manage to get to a situation where the extracted data was really useful. I just tried this JS version (sure the native one is the same) and without changing anything (apart from the training dataset) I got much better results. Exciting.
Re: Tesseract.js – A Javascript port of the Tesseract OCR engine
#28What is the best way, paid or otherwise, to attempt OCR on a pdf of old typewritten text?
Re: Tesseract.js – A Javascript port of the Tesseract OCR engine
#29What is the best way, paid or otherwise, to attempt OCR on a pdf of old typewritten text?
Re: Tesseract.js – A Javascript port of the Tesseract OCR engine
#30Tesseract sucked for me. Had a simple use case where I was trying to read numbers (in a computer font) from .png files and at completely predictable locations in the image -- and Tesseract was getting it horribly wrong a huge percent of the time. Went with AWS Rekognition and results were instantly 1000x better.
The sad thing is most of the state of the art models and algorithms are open research, they just are usually not written by software engineers and need to be rewritten to be deployable. Usually you just get some shell script like "run_eval.sh" that generates the figures in the paper through a bunch of spaghetti code, and most of the time it will depend on a specific old version of Tensorflow, that probably isn't available for your CUDA version, and probably won't compile on your system without hours of Googling.