PyTesser 是python的一个光学字符识别模块,它结合Tesseract OCR引擎来使用 ,能从一个图片或图像文件取出的字符串并输出。 使用PyTesser ,你无须安装Tesseract OCR引擎,但就必须要先安装PIL模块(Python Image Library, python的图形库) 官方介绍说明: PyTesser is an Optical Character Recognition module for Python. It takes as input an im
pytesser,OCR in Python using the Tesseract engine from Google。是谷歌OCR开源项目的一个模块,可将图片中的文字转换成文本(主要是英文)。 压缩包包括: pytesser_v0.0.1.zip PIL-1.1.7.win32-py2.7.exe README.txt fonts_test.png ocr.py
1、直接贴代码
#!C:/Python27
#coding=utf-8
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
from pytesser import *
from PIL import Image,ImageEnhance,ImageFilter
from selenium.common.exceptions import NoSuchElementException,Ti
实例如下所示:
import os
os.chdir(G:\Python1\Lib\site-packages\pytesser)
from pytesser import *
from pytesseract import image_to_string
from PIL import Image
from PIL import ImageGrab
#截图,获取需要识别的区域
x = 345
y = 281
m = 462
n = 327
k = 54
for i in range(2,6)