DonMB
DonMB

Reputation: 2728

progressive web app OCR SDK (JavaScript)

We have developed a web-application which uses OCR technology. We use a paid API-service for that which works pretty well. Our backend/server uses a Ruby/Rails based API and our frontend/client uses VUE.js. Now the OCR tech was server side but we want to grow into the offline/PWA (progressive web app) market as well and are currently developing an offline-version of our app. Since the OCR-part of our app has to run in the client, we'd move the OCR tech also client side which means we have to use some sort of PWA compatible OCR tech, e.g. a JavaScript SDK

I have probably searched the whole internet but there does not really seem to be a solution. It all came down to two major providers:

Before giving up and consider developing a native app (which will be quote cost intensive for us) I considered to ask here if any known OCR solution for PWAs is known which I did not consider yet. Thx

Upvotes: 11

Views: 4106

Answers (3)

Hammock
Hammock

Reputation: 141

Imense offers a compiled client side JavaScript OCR engine aimed at the ID reading market (limited character set). There is a demo that reads text from USB camera input at https://www.imense.co.uk/OCR.html The library is not free, the demo requires HTML5 support.

Upvotes: 0

Redwolf
Redwolf

Reputation: 559

No JavaScript solution, but you could try Scandit. It works offline on next to all platforms and can be web integrated using Cordova. https://www.scandit.com/tag/ocr/. Or use the newest web platform https://www.scandit.com/scandit-launches-barcode-scanner-sdk-for-web-brings-scanning-to-the-browser/

Try it here: https://websdk.scandit.com/

Upvotes: 1

Pascut
Pascut

Reputation: 3434

You can use the ocrad.js open source javascript OCR library: http://antimatter15.com/ocrad.js/demo.html | https://github.com/antimatter15/ocrad.js

It's 3mb size but it's working well on lots of examples.

Upvotes: 1

Related Questions