Created
February 4, 2020 08:28
-
-
Save UlisesGascon/ac5d494c560da12b9a27ab60cf5134b7 to your computer and use it in GitHub Desktop.
Basic OCR
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// npm install tesseract.js | |
const Tesseract = require('tesseract.js'); | |
Tesseract.recognize( | |
'./img/2.png', | |
'spa', | |
{ logger: m => console.log(m) } | |
).then(({ data: { text } }) => { | |
console.log(text); | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment