综述:

多尺度显著性区域提取的模板匹配
逯睿琦马惠敏
清华大学电子工程系

Template Matching Advances and Applications in Image Analysis

https://arxiv.org/pdf/1610.07231.pdf

Cheng Peng, Fanghui Liu, Jie Yang, Nikola Kasabov:
Robust Visual Tracking via Dirac-Weighted Cascading Correlation Filters. IEEE Signal Process. Lett. 25(11): 1700-1704 (2018)

An overview of template matching technique in image processing

Template Matching Advances and Applications in Image Analysis

https://robotacademy.net.au/lesson/template-matching/ 视频课程

https://v.youku.com/v_show/id_XMjczOTYwMjgwOA==.html?refer=seo_operation.liuxiao.liux_00003303_3000_Qzu6ve_19042900 - 视频

https://blog.csdn.net/KYJL888/article/details/81480670 中文ppt

https://blog.csdn.net/wuxianfeng1987/article/details/9969311 -常规方法

https://www.pyimagesearch.com/2015/01/26/multi-scale-template-matching-using-python-opencv/ -多尺度模板匹配

https://github.com/search?q=Template+Matching

https://github.com/stahmoresi/ComputerVision-TemplateMatching/tree/master/CS696-AppliedCV/CS696-AppliedCV-HA3


http://cgm.technion.ac.il/Computer-Graphics-Multimedia/Software/DDIS/resources/1612.02190.pdf

https://github.com/roimehrez/DDIS


http://www.iwssip.org/archive/2010/Proceedings/nav/papers/paper_25.pdf

https://github.com/albertzaharovits/template_matching


http://www.apsipa.org/proceedings/2017/CONTENTS/papers2017/14DecThursday/TA-02/TA-02.5.pdf

https://github.com/kamata1729/robustTemplateMatching


http://openaccess.thecvf.com/content_CVPR_2019/papers/Cheng_QATM_Quality-Aware_Template_Matching_for_Deep_Learning_CVPR_2019_paper.pdf

https://github.com/cplusx/QATM


https://arxiv.org/abs/1705.08593

https://github.com/seung-lab/NCCNet

https://github.com/Loqsh/cavelab


https://github.com/liortalker/DIWU

https://link.springer.com/chapter/10.1007/978-3-030-01249-6_25


https://github.com/FernandaAmaral/templateMatching

图像匹配模板的归一化互相关


https://github.com/hirune924/TemplateMatching

模板匹配PyTorch实现


https://github.com/kornia/kornia

可微分的「OpenCV」:基于PyTorch的可微计算机视觉库


一些论文:

Matching pixels using co-occurrence statistics

https://paperswithcode.com/paper/matching-pixels-using-co-occurrence

https://www.youtube.com/watch?v=mcIhA1Wr7vQ

Template Matching with Deformable Diversity Similarity

http://cgm.technion.ac.il/Computer-Graphics-Multimedia/Software/DDIS/resources/1612.02190.pdf

https://github.com/roimehrez/DDIS

QATM: Quality-Aware Template Matching For Deep Learning

https://arxiv.org/pdf/1903.07254.pdf

https://github.com/kamata1729/QATM_pytorch

https://github.com/cplusx/QATM

Best-Buddies Similarity - Robust Template Matching using Mutual Nearest Neighbors

https://arxiv.org/pdf/1609.01571.pdf

http://people.csail.mit.edu/talidekel/Best-Buddies%20Similarity.html

OATM: Occlusion Aware Template Matching by Consensus Set Maximization

http://openaccess.thecvf.com/content_cvpr_2018/papers/Korman_OATM_Occlusion_Aware_CVPR_2018_paper.pdf

Template Matching with Deformable Diversity Similarity

http://openaccess.thecvf.com/content_cvpr_2017/papers/Talmi_Template_Matching_With_CVPR_2017_paper.pdf

Treecann-kd tree coherence approximate nearest neighbor algorithm

https://link.springer.com/chapter/10.1007%2F978-3-642-33765-9_43

https://github.com/uva-graphics/patchtable/tree/master/patchtable/TreeCANN

Fast approximate nearest neighbors with automatic algorithm configuration

http://www.cs.ubc.ca/research/flann/

https://github.com/mariusmuja/flann

MatConvNet: CNNs for MATLAB

http://www.vlfeat.org/matconvnet/

https://github.com/vlfeat/matconvnet

http://www.vlfeat.org/matconvnet/pretrained/

一些代码:

https://pypi.org/project/Multi-Template-Matching/

https://www.di.ens.fr/willow/research/cnngeometric/

https://www.di.ens.fr/willow/research/weakalign/

https://www.di.ens.fr/willow/research/scnet/

模板匹配-论文-代码相关推荐

  1. OpenCV(项目)车牌识别3 -- 模板匹配

    目录 一.基础理论 1.思想 2.大致过程 二.详细过程 1.首先需要模板库 2.得到模板 3.原图限定大小 4.模板匹配 5.匹配所有子文件夹,保存最佳得分(最匹配项) 三.大致过程(细分类,节省时 ...

  2. Python+Opencv实现模板匹配

    目录 一.模板匹配简介 二.传统模板匹配算法不足之处 三.多尺度模板匹配实现步骤 四.多尺度模板匹配实现代码 五.多尺度模板匹配效果展示和分析 六.思维扩展 参考资料 注意事项 一.模板匹配简介    ...

  3. opencv 有无判断 模板匹配_opencv模板匹配

    模板匹配在图像处理中经常使用,该算法主要用于寻找图像中与模板图像相同的区域.此外,也用于图像定位,通过模板匹配找到指定的位置,然后进行后续的处理. 在进行模板匹配的时候,需要先制作模板,模板图像一般是 ...

  4. OpenCV4学习笔记(19)——模板匹配

    本次要整理记录的内容是:模板匹配. 模板匹配可以说是一种最简单的模式识别方法,它的实现主要是通过模板图像在被匹配图像中的平移,在被匹配图像中逐个区域寻找和模板图像相似的区域,如果存在某区域的相似度大于 ...

  5. Python+Opencv实现图像匹配——模板匹配

    1.原理 简单来说,模板匹配就是拿一个模板(图片)在目标图片上依次滑动,每次计算模板与模板下方的子图的相似度,最后就计算出了非常多的相似度: 如果只是单个目标的匹配,那只需要取相似度最大值所在的位置就 ...

  6. MFC与Halcon混合编程--基于相关性的模板匹配

    文章目录 前言 一.基于相关性的模板匹配 二.基于相关性的模板匹配的代码实现 1.Halcon中完成基于相关性的模板匹配 2.MFC实现与Halcon混合编程 3.实现效果 前言 正在学习Halcon ...

  7. 使用OpenCV实现Halcon算法(3)基于轮廓的模板匹配

    声明:本篇仅仅是分享网上的开源项目,算法非本人原创. 〇.算法效果展示 0.1要定位的模板一 找到的匹配 在有污损情况下找到的匹配 0.2要定位的模板2 找到的匹配 一. 理论部分 模板匹配的算法包括 ...

  8. opencv模板匹配相同位置去除重复的框

    使用opencv自带的模板匹配 1.目标匹配函数:cv2.matchTemplate() res=cv2.matchTemplate(image, templ, method, result=None ...

  9. OpenCV之特征点模板匹配

    OpenCV之特征点模板匹配 版权声明:博文为博主原创文章,转载请注明出处 :https://blog.csdn.net/ganbelieve/article/details/89959505 介绍一 ...

最新文章

  1. Tensorflow |(2)张量的阶和数据类型及张量操作
  2. Android的几个分析工具
  3. stm32换芯片编译
  4. 服务器光信号闪红灯是什么意思,路由器光信号闪红灯是什么意思
  5. 工具-Xmind常用快捷键/使用
  6. ionic4监听返回事件 AppMinimize navController
  7. subsequence 1(牛客多校第五场记忆化搜索+组合数学)
  8. [html] 使用history路由方式时,你有自己动手配置过服务器端吗?为什么要配服务器端?怎么配?
  9. stat函数_数据分析工具入门 掌握这些Excel函数就够了
  10. python实例 79,80
  11. ACM竞赛常用STL(二)之STL--algorithm
  12. 十一、 C++特性之begin()与end()
  13. CSS样式大全(转)
  14. 军用设备环境试验GJB150A-2009检测报告机构
  15. [笔记] 《Windows网络编程(第2版)》
  16. 学材料化学想转行计算机,2020大学最没用的十大专业-十大劝退专业(转专业必看)...
  17. 2017年北京共享单车数据(订单数据)
  18. mysql监控工具_详解MySQL监控工具 mysql-monitor
  19. Java并发编程:03-多线程并发下载器, 支持断点下载(手写不限速的迷你版迅雷)
  20. 20145322 何志威《网络对抗》shellcode注入Return-to-libc攻击深入

热门文章

  1. 春招面试两个月,分享一下遇到的笔试面试题(中通,泛微,兰亭集势,龙旗科技等)
  2. 物联网——有线通信技术
  3. 关于配置vsc中.json注释波浪线报错问题*
  4. 使用 skip-thoughts 提取句子特征
  5. 目标跟踪算法——KCF入门详解
  6. 电脑第三方linux版是什么意思,华为matebook14第三方linux版怎么样?好用吗?看配置测评就明白...
  7. FL Studio和Cubase哪个容易一些 FL Studio和Cubase修音哪个好
  8. java web在线预览pdf_JAVAWEB实现在线预览PDF
  9. 打印机篇——共享打印机设置
  10. Java 位运算符的基本用法【1】