资源简介
找出子图片在原图中的坐标
代码片段和文件信息
# -*- 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)
- 上一篇:《Python网络爬虫实战(胡松涛编著)》
- 下一篇:python_GUI的设计
相关资源
- 深度学习入门:基于Python的理论与实
- 《Python3爬虫、数据清洗与可视化》
- IDA.Pro.v7.2_Hgl-Green(Python)+7.0(x86ar
- python项目开发案例集锦
- 《Python开发实战》(PDF版高清扫描版
- opencv_python官方中文教程源码修改版
- Python学习手册(第3版)-带目录完整版
- python2.7:scipy-0.19.0-win64
- Python Cookbook 第3版 中文版.pdf
-
ba
semap-1.2.1-cp37-cp37m-win_amd64.whl - 《Python源码剖析-深度探索动态语言核
- MDNETpython实现
- Python + PyQt5 + MySQL模拟QQ的聊天与娱乐
- 《Python深度学习》2018中文
- opencv3计算机视觉 python实现
- python项目web
- 目标跟踪CSK算法python实现
- Pycharm+Django+Python+MySQL开发
- Python自动化运维技术与最佳实践
- Python学习手册.mobi kindle电子书 带源码
- OpenCV 3-python语言
- Python基础教程 Beginning Python From Novic
- Selenium2 Python自动化测试实战第二版高
- 《selenium2 python 自动化测试实战第二版
- opencv_python-3.4.0+contrib-cp36-cp36m-win_amd
- 机电控制python
- scipy-1.0.0-cp36-none-win_amd64.whl
- python2.7、numpy、matplotlib在windows 64位平
- 《Python深度学习》中文版pdf+英文版
- python3.6.5版本
评论
共有 条评论