Most active commenters
  • aidenn0(3)

92 points atomicnature | 15 comments | | HN request time: 1.019s | source | bottom
1. ranger_danger ◴[] No.45535139[source]
This is awesome. Only issue was I had to disable my JShelter extension because it would freeze the page using 100% CPU forever.
2. aidenn0 ◴[] No.45535500[source]
This is my first encounter with Scribe.js; since I have many book scans I always try OCRing them when I see this. Compared to Tesseract (which is the best I have so far), it gets the words right slightly more, but the paragraph segmentation is many times worse. On a book where every paragraph is indented, it reliably decides two consecutive one-line paragraphs are the same paragraph, which is understandable, but a downgrade from Tesseract which gets the paragraph segmentation as correct as possible (It doesn't handle paragraphs that spanpage-breaks, since I'm feeding it one page at a time)
replies(2): >>45535794 #>>45535816 #
3. Elucalidavah ◴[] No.45535794[source]
> Tesseract (which is the best I have so far)

Have you looked at EasyOCR?

replies(1): >>45539068 #
4. zihotki ◴[] No.45535802[source]
According to what I read in the documentation, it uses Tesseract underneath. I've used Tesseract v3 in the past and it was pain. Tesseract 4 uses LSTM neural net. How good is the performance and quality of the recognition nowadays in v4? Could anyone share his experience?
replies(1): >>45536479 #
5. zihotki ◴[] No.45535816[source]
Scribe is Tesseract. It uses tesseract.js which is a Web Assembly port of Tesseract. So they in theory should be equal. In practice custom settings or older versions could make a difference.
replies(2): >>45538421 #>>45539087 #
6. fodkodrasz ◴[] No.45535990[source]
I really like the idea, but unfortunately it could not cope with my usecase.

I have some lecture slides as image-only PDF (Hungarian language with a sparkle of English and Latin (biology)). I tried the tool on it and I had the following experience:

- proofreading with the overlay seems like a good idea, actually it is unusable when the original text has colors, and you need to recognize diacritic marks. Being able to show the original in grayscale or black&white could help. (BW worked, but Grayscale left everything colored)

- For proofreading the ebook mode was the most useful, I immediately spotted lots of errors that I could not see with overlay. A quick switch between the modes would be useful

- Editing text is not efficient when error rate is high (Hungarian language is not supported, that caused it mostly I guess), the interface has high overhead for mass corrections.

Very good idea, I think after a little polish it would even fit my usecase. For more traditional OCR usecases than mine it is probably already great.

7. constantinum ◴[] No.45536067[source]
anyone looking for an ocr or text pre-processor that maintains the layout(tables, forms) try LLMWhisperer > https://pg.llmwhisperer.unstract.com/
8. graynk ◴[] No.45536479[source]
I use paperless-ngx for digitizing all my documents, it also uses Tesseract. The result is not perfect, but more than acceptable, if I scan at 600dpi
9. Zardoz84 ◴[] No.45537131[source]
If it would generate ALTO XML files... IF!
10. criddell ◴[] No.45538421{3}[source]
What's the motivation for doing this in the browser? It seems like intentionally choosing a more difficult path to create an inferior result.

A native MacOS or Windows application could use the OCR facilities of the operating system and, in my experience, both produce results that are far better than Tesseract.

replies(1): >>45538724 #
11. Zardoz84 ◴[] No.45538724{4}[source]
Generate the OCR on the fly, in the browser, when you do not have the proper OCR info. As someone that works on public web libraries, I see it useful (but wasteful)
12. aidenn0 ◴[] No.45539068{3}[source]
EasyOCR is significantly worse than Tesseract for clean printed text and , while being orders of magnitude slower; far better than Tesseract for low-quality clean scans and extracting text from pictures (e.g. comics), which Tesseract does not as well.
replies(1): >>45539427 #
13. aidenn0 ◴[] No.45539087{3}[source]
This is only true in the "speed" mode; in the "quality" mode it claims better word recognition than Tesseract on clean scans (which matches my tests): https://github.com/scribeocr/scribe.js/blob/master/docs/scri...
14. criddell ◴[] No.45539427{4}[source]
Have you tried Abbyy FineReader? It's the best OCR package I've seen.