简体   繁体   中英

Multi-Scale Template Matching without looping through every size

What are the different ways to Match an image to a template on different size screens? For instance, if I have a template from a 720p screen and try to use it on a 1080p screen it would never find it I tried Sift before, but there were way too many false positives. And changing the size of the template to match every size screen is way too heavy for what I'm doing. I need to check a frame at least 10 times a second

  1. OpenCV have a template matching function here
  2. This approah is quite naive but have you try either to use a super resolution based on a deep learning (such as this one ) or to interpolate the resolution of your test image to the size of the mask ? You can also take a look to matchShapes
  3. Among all the features detector algorithm have you investigate other algorithms than SIFT ? Take a look to enter link description here and you have the contribution modules there .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM