I am using Pytesseract for OCR. But it looks like there is no option in the documentation to extract the confidence of ever character. I already have the Confidence of word but I want to know at which character the confidence is getting low.
So after research I came to know there is a function tesserractExtractResult()
in the tesseract API which can give confidence of characters.
How can I use this function in Python?