hello guys im' geting nonsense from tesseract anybody knows why ? here is the code :
let data = await myCamera.takePictureAsync({});
let path = data.uri.replace('file://', '');
setPicture(data.uri)
RNTesseractOcr.recognize(path, 'LANG_ENGLISH' , tessOptions)
.then((result) => {
console.log("OCR Result: ", result);
})
.catch((err) => {
console.log("OCR Error: ", err);
})