91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

python如何實現百萬答題自動百度搜索答案

發布時間:2021-03-23 11:00:51 來源:億速云 閱讀:584 作者:小新 欄目:開發技術

這篇文章主要介紹了python如何實現百萬答題自動百度搜索答案,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

用python搭建百萬答題、自動百度搜索答案。

使用平臺

windows7
python3.6
MIX2手機

代碼原理

手機屏幕內容同步到pc端
對問題截圖
對截圖文字分析
用瀏覽器自動搜索文本

使用教程

1、使用Airdroid 將手機屏幕顯示在電腦屏幕上。也可使用360手機助手實現。不涉及任何代碼。實現效果如圖:

python如何實現百萬答題自動百度搜索答案

2、在提問出現時,運行python程序,將問題部分截圖。

python如何實現百萬答題自動百度搜索答案

這里要用到兩個函數:

get_point()  #采集要截圖的坐標,以及圖片的高度寬度
window_capture()   #截圖

def get_point(): 
 '''''采集坐標,并返回w,h,x,y。 作為window_capture() 函數使用''' 
 try: 
 print('正在采集坐標1,請將鼠標移動到該點') 
 # print(3) 
 # time.sleep(1) 
 print(2) 
 time.sleep(1) 
 print(1) 
 time.sleep(1) 
 x1,y1 = pag.position() #返回鼠標的坐標 
 print('采集成功,坐標為:',(x1,y1)) 
 print('') 
 # time.sleep(2) 
 print('正在采集坐標2,請將鼠標移動到該點') 
 print(3) 
 time.sleep(1) 
 print(2) 
 time.sleep(1) 
 print(1) 
 time.sleep(1) 
 x2, y2 = pag.position() # 返回鼠標的坐標 
 print('采集成功,坐標為:',(x2,y2)) 
 #os.system('cls')#清除屏幕 
 w = abs(x1 - x2) 
 h = abs(y1 - y2) 
 x = min(x1, x2) 
 y = min(y1, y2) 
 return (w,h,x,y) 
 except KeyboardInterrupt: 
 print('獲取失敗')
def window_capture(result,filename): 
 '''''獲取截圖''' 
 #寬度w 
 #高度h 
 #左上角截圖的坐標x,y 
 w,h,x,y=result 
 hwnd = 0 
 hwndDC = win32gui.GetWindowDC(hwnd) 
 mfcDC = win32ui.CreateDCFromHandle(hwndDC) 
 saveDC = mfcDC.CreateCompatibleDC() 
 saveBitMap = win32ui.CreateBitmap() 
 MoniterDev = win32api.EnumDisplayMonitors(None,None) 
 #w = MoniterDev[0][2][2] 
 # #h = MoniterDev[0][2][3] 
 # w = 516 
 # h = 514 
 saveBitMap.CreateCompatibleBitmap(mfcDC,w,h) 
 saveDC.SelectObject(saveBitMap) 
 saveDC.BitBlt((0,0),(w,h),mfcDC,(x,y),win32con.SRCCOPY) 
 saveBitMap.SaveBitmapFile(saveDC,filename)

運行后截圖如下

python如何實現百萬答題自動百度搜索答案

3.對圖片文字分析提取

參考鏈接: * 圖片轉文本 * 配置方式

代碼部分:

def orc_pic(): 
 #識別中文 
 text=pytesseract.image_to_string(Image.open('jietu.jpg'),lang='chi_sim') 
 #識別英文 
 # text=pytesseract.image_to_string(Image.open('jietu.jpg')) 
 text = ''.join(text.split()) 
 return text

4.對文本進行搜索

 #瀏覽器搜索
url = 'http://www.baidu.com/s?wd=%s' % text
webbrowser.open(url)

所有代碼如下:

 #coding:'utf-8'
import win32gui, win32ui, win32con, win32api
from PIL import Image
import pytesseract
import webbrowser
#先下載pyautogui庫,pip install pyautogui
import os,time
import pyautogui as pag
#獲取sdk http://ai.baidu.com/。
#獲取aip pip install git+https://github.com/Baidu-AIP/python-sdk.git@master
from aip import AipOcr
import json

status=0
""" 你的 APPID AK SK """
APP_ID = '****'
API_KEY = '***'
SECRET_KEY = '***'
client = AipOcr(APP_ID, API_KEY, SECRET_KEY)

""" 讀取圖片 """

def get_question(path):
 '''百度識別圖片文字'''
 with open(path, 'rb') as fp:
 image=fp.read()
 res = client.basicGeneral(image)
 words = res['words_result']
 lines = [item['words'] for item in words]
 question = ''.join(lines)
 if question[1] == '.':
 question = question[2:]
 elif question[2] == '.':
 question = question[3:]
 return question.replace('?', ' ')
#采集坐標
def get_point():
 '''采集坐標,并返回w,h,x,y。 作為window_capture() 函數使用'''
 try:
 print('正在采集坐標1,請將鼠標移動到該點')
 # print(3)
 # time.sleep(1)
 print(2)
 time.sleep(1)
 print(1)
 time.sleep(1)
 x1,y1 = pag.position() #返回鼠標的坐標
 print('采集成功,坐標為:',(x1,y1))
 print('')
 # time.sleep(2)
 print('正在采集坐標2,請將鼠標移動到該點')
 print(3)
 time.sleep(1)
 print(2)
 time.sleep(1)
 print(1)
 time.sleep(1)
 x2, y2 = pag.position() # 返回鼠標的坐標
 print('采集成功,坐標為:',(x2,y2))
 #os.system('cls')#清除屏幕
 w = abs(x1 - x2)
 h = abs(y1 - y2)
 x = min(x1, x2)
 y = min(y1, y2)
 return (w,h,x,y)
 except KeyboardInterrupt:
 print('獲取失敗')
#獲取截圖
def window_capture(result,filename):
 '''獲取截圖'''
 #寬度w
 #高度h
 #左上角截圖的坐標x,y
 w,h,x,y=result
 hwnd = 0
 hwndDC = win32gui.GetWindowDC(hwnd)
 mfcDC = win32ui.CreateDCFromHandle(hwndDC)
 saveDC = mfcDC.CreateCompatibleDC()
 saveBitMap = win32ui.CreateBitmap()
 MoniterDev = win32api.EnumDisplayMonitors(None,None)
 #w = MoniterDev[0][2][2]
 # #h = MoniterDev[0][2][3]
 # w = 516
 # h = 514
 saveBitMap.CreateCompatibleBitmap(mfcDC,w,h)
 saveDC.SelectObject(saveBitMap)
 saveDC.BitBlt((0,0),(w,h),mfcDC,(x,y),win32con.SRCCOPY)
 saveBitMap.SaveBitmapFile(saveDC,filename)

def get_point_txt(status):
 #如果status=y,則重新獲取坐標
 '''如果存在point.txt,則詢問是否重新采集,刪除point.txt;如果不存在txt,則直接采集。'''

 if not os.path.isfile('point.txt') :
 result = get_point()
 with open('point.txt', 'w') as f:
 f.write(str(result))
 return result
 else:
 if status=='y':
 result = get_point()
 with open('point.txt', 'w') as f:
 f.write(str(result))
 return result
 else:
 with open('point.txt', 'r') as f:
 result = f.readline()
 result = eval(result)
 return result

def orc_pic():
 #識別中文
 text=pytesseract.image_to_string(Image.open('jietu.jpg'),lang='chi_sim')
 #識別英文
 # text=pytesseract.image_to_string(Image.open('jietu.jpg'))
 text = ''.join(text.split())
 return text

#百度識別
def orc_baidu():
 text=get_question('jietu.jpg')
 return text

status='y'

start = time.time()
result=get_point_txt(status)
for i in range(10):
 window_capture(result,'jietu.jpg')

# text=orc_baidu()
text=orc_pic()
print(text)
#瀏覽器搜索
url = 'http://www.baidu.com/s?wd=%s' % text
webbrowser.open(url)
# url2='https://www.google.com/search?q=%s' % text

# webbrowser.open(url2)
end = time.time()
time=end-start
print('此次耗時%.1f秒' % time)

感謝你能夠認真閱讀完這篇文章,希望小編分享的“python如何實現百萬答題自動百度搜索答案”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

乌鲁木齐县| 盖州市| 抚远县| 普兰县| 邢台县| 长阳| 丁青县| 西畴县| 新泰市| 三江| 安福县| 寿阳县| 千阳县| 集安市| 漯河市| 永德县| 台中市| 沙河市| 江阴市| 吉安市| 镇雄县| 丹寨县| 阆中市| 犍为县| 安阳市| 江陵县| 襄汾县| 富川| 灵山县| 蒙阴县| 昌黎县| 新源县| 宜宾市| 桃园市| 松溪县| 顺平县| 远安县| 湘西| 金溪县| 弥渡县| 房山区|