答题辅助python代码实现


Posted in Python onJanuary 16, 2018

本文实例为大家分享了答题辅助python具体代码,供大家参考,具体内容如下

from screenshot import pull_screenshot
import time, urllib.request
 
try:
 import Image
except ImportError:
 from PIL import Image, ImageDraw
 
import pytesseract
 
# 屏幕顶端到问题的距离/屏幕高度,随分辨率变化(默认1920*1080)
top_off_c = 0.15
# 问题高度
que_h = 300
# 答案高度
ans_h = 170
 
# 左右偏移量
l_r_off = 40
 
 
def check(question, ans):
 q_url = "http://www.baidu.com/s?word=" + urllib.parse.quote(question)
 resp = urllib.request.urlopen(q_url)
 
 print(resp.read().decode("utf-8"))
 
 
def draw():
 img = Image.open('autojump.png')
 w, h = img.size
 draw = ImageDraw.Draw(img)
 draw.line((40, h * 0.15, w - 40, h * 0.15), fill="red")
 draw.line((40, h * 0.15 + 300, w - 40, h * 0.15 + 300), fill="red")
 
 draw.line((40, h * 0.15 + 470, w * 0.7, h * 0.15 + 470), fill="red")
 draw.line((40, h * 0.15 + 640, w * 0.7, h * 0.15 + 640), fill="red")
 draw.line((40, h * 0.15 + 810, w * 0.7, h * 0.15 + 810), fill="red")
 
 img.show()
 
 
def main():
 while True:
  print(">>>>>>")
  pull_screenshot()
  img = Image.open('autojump.png')
  img = img.convert('L')
  w, h = img.size
  img_q = img.crop((l_r_off, h * top_off_c, w - l_r_off, h * top_off_c + que_h))
  img_a = img.crop((l_r_off, h * top_off_c + que_h, w * 0.7, h * top_off_c + que_h + ans_h))
  img_b = img.crop((l_r_off, h * top_off_c + que_h + ans_h, w * 0.7, h * top_off_c + que_h + ans_h * 2))
  img_c = img.crop((l_r_off, h * top_off_c + que_h + ans_h * 2, w * 0.7, h * top_off_c + que_h + ans_h * 3))
  question = pytesseract.image_to_string(img_q, lang='chi_sim')
  ans_a = pytesseract.image_to_string(img_a, lang='chi_sim')
  ans_b = pytesseract.image_to_string(img_b, lang='chi_sim')
  ans_c = pytesseract.image_to_string(img_c, lang='chi_sim')
  question = question.replace(" ", "").replace(".", "")
  ans = ["1", "1", "1"]
  ans[0] = ans_a.replace(" ", "").replace(".", "")
  ans[1] = ans_b.replace(" ", "").replace(".", "")
  ans[2] = ans_c.replace(" ", "").replace(".", "")
 
  print(question.replace(" ", "").replace(".", ""))
  print(ans)
 
  check(question, ans)
  # draw()
 
  time.sleep(1)
 
 
if __name__ == '__main__':
 main()

 文字识别

sudo pip3 install pytesseract
sudo apt-get install tesseract-ocr

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持三水点靠木。

Python 相关文章推荐
python str与repr的区别
Mar 23 Python
Python原始字符串(raw strings)用法实例
Oct 13 Python
Python学习小技巧之列表项的排序
May 20 Python
Python实现两个list对应元素相减操作示例
Jun 09 Python
python+mongodb数据抓取详细介绍
Oct 25 Python
Python框架Flask的基本数据库操作方法分析
Jul 13 Python
python 获取url中的参数列表实例
Dec 18 Python
python实现网站微信登录的示例代码
Sep 18 Python
pycharm激活码有效到2020年11月底
Sep 18 Python
python多线程实现同时执行两个while循环的操作
May 02 Python
Django url 路由匹配过程详解
Jan 22 Python
python 提取html文本的方法
May 20 Python
python实现百万答题自动百度搜索答案
Jan 16 #Python
Python数据结构之双向链表的定义与使用方法示例
Jan 16 #Python
python+pillow绘制矩阵盖尔圆简单实例
Jan 16 #Python
Python面向对象编程之继承与多态详解
Jan 16 #Python
Python基于socket实现简单的即时通讯功能示例
Jan 16 #Python
python中将字典形式的数据循环插入Excel
Jan 16 #Python
python+tkinter编写电脑桌面放大镜程序实例代码
Jan 16 #Python
You might like
Codeigniter出现错误提示Error with CACHE directory的解决方案
2014/06/12 PHP
PHP下通过QRCode类库创建中间带网站LOGO的二维码
2014/07/12 PHP
使用PHP如何实现高效安全的ftp服务器(一)
2015/12/20 PHP
firefox浏览器下javascript 拖动层效果与原理分析代码
2007/12/04 Javascript
jquery.lazyload  实现图片延迟加载jquery插件
2010/02/06 Javascript
防止登录页面出现在frame中js代码
2014/07/22 Javascript
JavaScript实现拖拽网页内元素的方法
2015/04/15 Javascript
在JavaScript中处理时间之setMinutes()方法的使用
2015/06/11 Javascript
javascript背景时钟实现方法
2015/06/18 Javascript
使用Object.defineProperty实现简单的js双向绑定
2016/04/15 Javascript
微信小程序 LOL 英雄介绍开发实例
2016/09/30 Javascript
jquery把int类型转换成字符串类型的方法
2016/10/07 Javascript
深入理解React中何时使用箭头函数
2017/08/23 Javascript
JS路由跳转的简单实现代码
2017/09/21 Javascript
iview table render集成switch开关的实例
2018/03/14 Javascript
微信小程序实现的一键拨号功能示例
2019/04/24 Javascript
layui实现数据分页功能
2019/07/27 Javascript
Vue使用NProgress的操作过程解析
2019/10/10 Javascript
mpvue 项目初始化及实现授权登录的实现方法
2020/07/20 Javascript
[46:48]DOTA2上海特级锦标赛A组小组赛#2 Secret VS CDEC第三局
2016/02/25 DOTA
[02:51]2018年度DOTA2最佳中单位选手-完美盛典
2018/12/17 DOTA
django实现前后台交互实例
2017/08/07 Python
Python3.6.x中内置函数总结及讲解
2019/02/22 Python
python实现趣味图片字符化
2019/04/30 Python
python 列表输出重复值以及对应的角标方法
2019/06/11 Python
纯css3实现的鼠标悬停动画按钮
2014/12/23 HTML / CSS
天猫国际进口超市直营:官方直采,一站购齐
2017/12/11 全球购物
学年末自我鉴定
2014/01/21 职场文书
空中乘务员岗位职责
2014/03/08 职场文书
幼儿教师求职信
2014/05/24 职场文书
护士实习求职信
2014/06/22 职场文书
党员教师批评与自我批评发言稿
2014/10/15 职场文书
2014年质量管理工作总结
2014/12/01 职场文书
对外汉语教师推荐信
2015/03/27 职场文书
上市公司财务总监岗位职责
2015/04/03 职场文书
详解mysql三值逻辑与NULL
2021/05/19 MySQL