Hi All,
I'm new bee for python openCV, can you help me to extract text from small image.Can you check my uploaded image.
i have tried Below code, But i'm not getting expected result.
import sys
import cv2
import numpy as np
import pytesseract
img = Image.open("TestImge.PNG")
pytesseract.pytesseract.tesseract_cmd = 'F:\Python27\Tesseract-OCR\tesseract'
print(pytesseract.image_to_string(img))
my Expected output Is
Show the following Claims
But i'm getting
Sltowvcololovangccrno
my image
Help me to done.
Thanks,