-
Notifications
You must be signed in to change notification settings - Fork 351
/
GetQuestionIos.py
57 lines (41 loc) · 1.66 KB
/
GetQuestionIos.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# -*- coding: utf-8 -*-
# @Author : Skye
# @Time : 2018/1/8 20:38
# @desc : 答题闯关辅助,截屏 ,OCR 识别,百度搜索
try:
from configparser import ConfigParser # Python 3
except ImportError:
from ConfigParser import ConfigParser # Python 2
import time
import wda
from PIL import Image
from common import ocr, methods
# 读取配置文件
config = ConfigParser()
config.read('./config/configure.conf', encoding='utf-8')
c = wda.Client()
while True:
t = time.clock()
# 截图
c.screenshot('screenshot.png')
img = Image.open("./screenshot.png")
# 文字识别,可选 Tesseract 和 Baidu ,请在 config/configure.conf 中进行相应配置
# ocr_img: 需要分别截取题目和选项区域,使用 Tesseract
# ocr_img_tess: 题目和选项一起截,使用 Tesseract
# ocr_img_baidu: 题目和选项一起截,使用 baidu ocr,需配置 key
# question, choices = ocr.ocr_img(img, config)
question, choices = ocr.ocr_img_tess(img, config)
# question, choices = ocr.ocr_img_baidu(img, config)
# 用不同方法输出结果,取消某个方法在前面加上#
# 打开浏览器方法搜索问题
methods.run_algorithm(0, question, choices)
# 将问题与选项一起搜索方法,并获取搜索到的结果数目
methods.run_algorithm(1, question, choices)
# 用选项在问题页面中计数出现词频方法
methods.run_algorithm(2, question, choices)
end_time3 = time.clock()
print('用时: {0}'.format(end_time3 - t))
go = input('输入回车继续运行,输入 n 回车结束运行: ')
if go == 'n':
break
print('------------------------')