template-matching Questions
2
Solved
Im trying to make a bot for a game. Basically it picks up items from the ground, thing is these items look different sometimes for ex. the angle is different or they are lying on differentyl colour...
Listless asked 19/6, 2019 at 11:53
3
Solved
I am using Perceptual hashing technique to find near-duplicate and exact-duplicate images. The code is working perfectly for finding exact-duplicate images. However, finding near-duplicate and slig...
Clymer asked 17/3, 2022 at 14:32
3
Solved
I'm trying to find multiple templates in an image using opencv python, according to this link.
But the problem is that multiple points returned for a single object with a slightly difference in po...
Mescal asked 29/5, 2018 at 7:49
1
The idea:
I have one screenshot and want to find all characters and numbers with its postition on this image. The easiest way is to use opencv match template and compare all characters (around 800)...
Statesmanship asked 24/4, 2021 at 19:35
2
Solved
I have two images which overlap. I'd like to align these two images. My current approach is to find a common feature (a marking) in both images. I'd then like to align these two images according to...
Pavilion asked 24/5, 2017 at 23:31
3
I am trying to extract alphanumeric characters (a-z0-9) which do not form sensefull words from an image which is taken with a consumer camera (including mobile phones). The characters have equal si...
Idealistic asked 21/12, 2014 at 6:51
8
Solved
What's the way OpenCV handles transparency in image during template matching?
The problem is that the template image needs to have transparent parts, because in the original image there could be a...
Solmization asked 21/1, 2011 at 17:37
1
Solved
I am trying to create a templated can_stream struct that inherits from
std::false_type or std::true_type depending on whether operator<< is defined for type T.
#include <iostream>
stru...
Henriettehenriha asked 16/2, 2021 at 20:28
0
I had the same problem as this question since 2J, but none of the answers worked with Python 3, so today I took all day to solve the problem:
python opencv cv2 matchTemplate with transparency (grap...
Kamakura asked 28/1, 2021 at 21:24
4
Solved
I have a 3D matrix (very large, let call it L) and a 3D small one (very small, let call it S) and want to use OpenCV to find the closest pattern in L.
Does OpenCV do it for me? If yes, how I shoul...
Pictogram asked 1/8, 2012 at 19:16
2
Solved
I am struggling with template matching in the Fourier domain in Matlab. Here are my images (the artist is RamalamaCreatures on DeviantArt):
My aim is to place a bounding box around the ear of ...
Mather asked 19/9, 2015 at 5:10
2
I am evaluating template matching algorithm to differentiate similar and dissimilar objects. What I found is confusing, I had an impression of template matching is a method which compares raw pixel...
Swaine asked 14/6, 2018 at 11:3
4
Solved
I am creating a simple openCV application using template matching where I need to compare find a small image in a big image and return the result as true(if match found) or false( no matches found)...
Sonde asked 22/7, 2013 at 10:6
1
Solved
OpenCV has the matchTemplate() function, which operates by sliding the template input across the output, and generating an array output corresponding to the match.
Where can I learn more about how ...
Modulator asked 29/9, 2019 at 18:37
3
I'm having a bit of trouble with opencv and template matching, so I was hoping someone here could help a lost soul out.
So as part of the code I'm using, I've got the following 2 lines which I don...
Tracy asked 12/7, 2017 at 3:19
1
I am using opencv template matching in real time camera capture, and got the error message:
error: (-215) _img.size().height <= _templ.size().height && _img.size().width <= _templ.si...
Chicory asked 1/5, 2018 at 3:5
1
Solved
I searched a lot for finding the threshold values for the below mention methods.
methods = ['cv2.TM_CCOEFF', 'cv2.TM_CCOEFF_NORMED', 'cv2.TM_CCORR',
'cv2.TM_CCORR_NORMED', 'cv2.TM_SQDIFF', cv2.TM...
Simdars asked 24/3, 2018 at 12:23
2
Solved
I'm a beginner to OpenCV. I'm trying to do a sample android application to match a template image in a given image using OpenCV Template matching. I searched in the internet and I couldn't find a p...
Tucket asked 8/6, 2013 at 15:34
3
Solved
Anybody know about the fastest method for calculating convolution? Unfortunately the matrix which I deal with is very large (500x500x200) and if I use convn in MATLAB it takes a long time (I have t...
Remunerative asked 12/12, 2013 at 21:30
1
I am trying to implement in Python the following C++ code: https://opencv-code.com/tutorials/fast-template-matching-with-image-pyramid/
If you check the C++ code, you'll see this loop:
for (int i...
Mckissick asked 13/4, 2015 at 12:17
3
I'm looking for a algorithm that computes the following: I have an image with a predefined area (the green one on the attached image). The user draws the red rectangle and the algorithm should comp...
Evesham asked 15/9, 2016 at 8:5
1
I'm trying to match an image with the camera input in Android using template matching. When i try this with static 2 images like in here: OpenCV Template Matching example in Android, everything wor...
Instantaneous asked 18/10, 2013 at 15:39
3
I'm using the method of match template with CV_TM_CCORR_NORMED to compare two images ... I want to make to make this rotation and scale invariant .. any ideas?
I tried to use the same method on th...
Dis asked 19/5, 2012 at 15:16
1
Solved
I have this image of a table (seen below). And I'm trying to get the data from the table, similar to this form (first row of table image):
rows[0] = [x,x, , , , ,x, ,x,x, ,x, ,x, , , , ,x, , , ,x,...
Blarney asked 15/1, 2015 at 17:12
2
Solved
i am calling:
Imgproc.matchTemplate(image, templ, result, 0);
and the result of the match is in a Mat instance.
I couldn't find any documentation for this class.
If i understand right, the resul...
Tetherball asked 12/3, 2012 at 12:27
1 Next >
© 2022 - 2024 — McMap. All rights reserved.