资源简介
对两幅图进行大家来找茬,找出两幅图片中的不同之处。
代码片段和文件信息
# -*- coding: utf-8 -*-
“““
Created on Fri Dec 14 09:06:41 2018
@author: user
“““
import cv2
import numpy as np
imageA = cv2.imread(‘1.jpg‘)
imageB = cv2.imread(‘111.jpg‘)
imageA=cv2.resize(imageA(330330))
imageB=cv2.resize(imageB(330330))
grayA = cv2.cvtColor(imageA cv2.COLOR_BGR2GRAY)
grayB = cv2.cvtColor(imageB cv2.COLOR_BGR2GRAY)
height width = grayA.shape
k1=np.ones((33)np.uint8)
result_window = np.zeros((height width) dtype=imageA.dtype)
for start_y in range(0 height-100 10):
for start_x in range(0 width-100 10):
window = grayA[start_y:start_y+100 start_x:start_x+100]
match = cv2.matchTemplate(grayB window cv2.TM_CCOEFF_NORMED)
_ _ _ max_loc = cv2.minMaxLoc(match)
matched_window = grayB[max_loc[1]:max_loc[1]+100 max_loc[0]:max_loc[0]+100]
result = cv2.absdiff(window matched_window)
相关资源
- 5层神经网络带L2正则化的损失函数计
- python标准库中文版.tar
- python多人在线聊天室
- Python3 实现SM3国产哈希算法
- python爬取微博热搜并直接写入mysql.r
- Python-Scrapy 入门级爬虫项目实战
- 用python编写的信息管理系统的增删改
- 用python编写的饮料自动购物机
- [计算方法作业]利用python中matplotlib实
- python电子书大全.txt
- python用Django实现简单的web版学生信息
- Python-从Python高效处理FASTQ文件
- Python-机器学习完全课程
- Python-利用flask搭建的一个简单的个人
- Python-利用Python实现中文文本关键词抽
- Python-一个WindowsLinux和Mac的简单键盘记
- Python-Glyce用于汉字表示的字形向量
- paillier 纯 python Paillier同态密码.zip
- fancyimpute 在 python 中,实现了多元插值
- 利用pythonscihub成文献为PDF操作
- 详解python实现交叉验证法与留出法
- 用python做一个搜索引擎(Pylucene)的代
- python利用urllib实现爬取京东网站商品
- python微信公众号之关键词自动回复
- python爬取cnvd漏洞库信息的
- arcgis使用python脚本批量裁剪影像
- Python的Django框架中的数据库配置指南
- python实现超市商品销售管理系统
- Python-Tkinter Text输入内容在界面显示的
- Python爬虫库requests获取响应内容、响应
评论
共有 条评论