I need to use pytesseract to extract text from this picture: enter image description here
However, i used pytesseract. It wont work.Here is my code:
try:
import Image
except ImportError:
from PIL import Image
import pytesseract
print(pytesseract.image_to_string(Image.open('1.png')))