用python的OCR實現自動拍照搜題

2021-08-19 08:07:15 字數 720 閱讀 5145

學以致用系列

而且!!!!!以上都是可以用**寫出來的。

因為用python實現的,**部分主要是需要搭建乙個python中ocr的環境(ocr安裝在這裡:

每道題的答題時間是三十秒,上面三步完成基本是夠的。(為了答題的命中率我也是蠻拼的了。。。)

1.截圖的題幹:

2.文字識別出來的結果:

text = pytesseract.image_to_string(image.open('1.png'), lang='chi_sim') #讀取片及使用的文字識別型別

text1=urllib.parse.quote(text) # 轉碼成urlencode方便瀏覽器開啟

print(text) #列印出識別的結果

url=""+text1 #url

print(url)

webbrowser.open(url) #使用系統預設瀏覽器訪問該url

return url

用python實現自動拍照專案

當下,python是熱門語言之一,python可以實現各種各樣的功能,從而在現實生活中幫助我們。專案全部 import cv2 import time def snapshotct camera idx 1 camera idx的作用是選擇攝像頭。如果為0則使用內建攝像頭,比如筆記本的攝像頭,用1或...

用python實現的NYOJ自動簽到程式

程式簡介 使用說明 import requests from bs4 import beautifulsoup deflogin check response 抓取獲得登入結果 soup beautifulsoup response.text,html.parser lists soup.find ...

用python實現的可以自動補全的字首樹

1,以下是 部分 import os,sys import json class trietree def init self,is debug 1,is sentence 0 self.tree none self.tree self.is debug is debug self.is sente...