• 大小: 1.29KB
    文件类型: .py
    金币: 1
    下载: 0 次
    发布日期: 2021-01-30
  • 语言: Python
  • 标签: python  opencv  

资源简介

找出子图片在原图中的坐标

资源截图

代码片段和文件信息

# -*- coding: UTF-8 -*-
import cv2
import os
import time

def get_pay_keyboard_number_location(impath target screenw screenh val):
    print(“start find pic“)

    start = time.time()
    img_src = cv2.imread(impath)
    template = cv2.imread(target)

    if (img_src is not None) and (template is not None):
        # 获取小图片的高和宽
        imgtmh = template.shape[0]
        imgtmw = template.shape[1]
        # 获取大图片的高和宽
        img_srch = img_src.shape[0]
        img_srcw = img_src.shape[1]
        # 匹配图片
        res = cv2.matchTemplate(img_src template cv2.TM_CCOEFF_NORMED)

评论

共有 条评论