I want to implement OCR and i am using tesseract.js. The code works fine when testing on the browser however when i run it on my android device, it shows blank page. Any idea will be of great help.
Here is my code:
import * as Tesseract from ‘tesseract.js’;
Tesseract.recognize("./img/img.jpg")
.progress((progress) => {
this.loader.present();
})
.then((tesseractResult) => {
this.loader.dismiss();
this.recognizedText = tesseractResult.text;
console.log(“this is the data we collected from image”);
this.alerts(this.recognizedText);
});