直接通过像素读取图片内容返回结果

发布时间:2024年01月02日

读取像素工具
在这里插入图片描述

import ddddocr
import pyautogui


def saveimg(left, top, width, height):
    # 截取屏幕上指定区域的截图
    # left, top, width, height = 925, 7, 70, 25
    image = pyautogui.screenshot(region=(left, top, width, height))
    # 保存截图到本地
    image.save('1.jpg', dpi=(1200, 1200))


def text(left, top, width, height, txt):
    # 识别图片文字
    saveimg(left, top, width, height)
    ocr = ddddocr.DdddOcr()
    with open('1.jpg', 'rb') as f:
        img_bytes = f.read()
    res = ocr.classification(img_bytes)
    print(f'自动识别为:{res}')
    # os.remove('1.jpg')
    return txt.lower() == res.lower()#取消大小写判断

# saveimg(319, 140, 24, 15)
print(text(319, 140, 24, 15,'视口'))#判断模型是否已经打开
print(text(133, 3, 86, 20,'SViewDesigner'))#判断应用是否已经打开
文章来源:https://blog.csdn.net/qq_41644139/article/details/135343063
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。