Skip to content Skip to sidebar Skip to footer

Raise "pytesseract.pytesseract.TesseractError: (3221225477, '')"

I got the following error when I tried to find out the Chinese words in a picture by python: (By the way, I had already had 'chi_sim.traineddata' training file in tessdata director

Solution 1:

Actually since the error code 3221225477 --> 0xC0000005 : ACCESS_VIOLATION means Tesseract has crashed (from here), change a version of Tesseract may help you.

In 4.00 (beta) and 3.02 this problem is occurred, 3.05 is fine (I use Windows 7).

Hope this helps.


Solution 2:

I got this error because my UZN file extended beyond the image area. I patched pytesseract.py (print(' '.join(cmd_args)) in run_tesseract()) which was throwing an assertion error.


Solution 3:

I think this problem is TRAINEDDATA that raised.

I used to develop the OCR project with TESSERACT on windows 7.

Now, I change to windows 10. I get this problem.

but, I found this issue is related to your TRAINEDDATA,

If I use TRAINEDDATA that I have trained on windows 7, then it fine without any error message.


Post a Comment for "Raise "pytesseract.pytesseract.TesseractError: (3221225477, '')""