Skip to content

Instantly share code, notes, and snippets.

@jeromewu
Last active December 3, 2023 20:00
Show Gist options
  • Save jeromewu/6a58b641680fbf73f41ada0b9202ac9a to your computer and use it in GitHub Desktop.
Save jeromewu/6a58b641680fbf73f41ada0b9202ac9a to your computer and use it in GitHub Desktop.
// Typical usage of tesseract.js
const { TesseractWorker } = Tesseract;
const worker = new TesseractWorker();
const image = 'https://tesseract.projectnaptha.com/img/eng_bw.png';
worker.recognize(image)
.then(({ text }) => {
console.log(text);
});
@Obuljon
Copy link

Obuljon commented Dec 3, 2023

how to install?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment