Tesseract JS is having issues finding text in an image

144 Views Asked by At

Im trying to use tesseract to pull out numbers in an image into a string. I have an image object image passed into this code :

Tesseract.recognize(image).then(function(result){         
console.log(result);         
alert(result.text);     })```

It process the image, and doesn't find anything.

This is the image: imagetobesearched

I tried to pass the image, and a larger image with more pixels. Neither returned with text.

0

There are 0 best solutions below