Created
May 4, 2020 21:44
-
-
Save ianjennings/fc9d2ea888bf710ff0ada152676b2271 to your computer and use it in GitHub Desktop.
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
const Tesseract = require('tesseract.js'); | |
Tesseract.recognize( | |
'https://tesseract.projectnaptha.com/img/eng_bw.png', | |
'eng', | |
{ 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