Template matching is the process of finding a smaller known template image in another larger image.

learn more… | top users | synonyms

0
votes
0answers
14 views

Image thinning process using JAVA, for Minutiae extraction

I have implemented the Zhang-Suen algorithm, with the help of OpenCV. But, the process of thinning is taking too much time. I am using a Binarized image to get it done. Is it taking the time because ...
0
votes
1answer
30 views

How to choose stable area for template matching with OpenCV?

I am using OpenCV for some project. I want to use part of a planar appearance to track this planar with template matching. Is there some method to choose stabler patches for template matching? Any ...
1
vote
0answers
59 views

Handwritten character template matching in Matlab

Working with template matching of handwritten data input but face some problems for being very new in Matlab. I want to match this template with this one.. So far i did is: function ...
0
votes
1answer
77 views

Template matching - how to ignore pixels

I'm trying to find a digit within an image. To test my code I took an image of the digit and then used AForge's Exhaustive Template Matching algorithm to search for it in another image. But I think ...
0
votes
1answer
56 views

Templated member function call g++ error : no matching function for call

g++ encounter an error on that sample. I have a class Option who contain an std::string OptionValue inherited from Option with an template type and a templated argument of type std::string for the ...
2
votes
1answer
146 views

openCV template matching using CV_TM_CCORR_NORMED

I have this code cvMatchTemplate(image2, templat2, result, CV_TM_CCORR_NORMED); How do I make the program execute the following lines if there is a match: double min_val, max_val; CvPoint min_loc, ...
0
votes
1answer
164 views

Opencv c++Template/Pattern Matching Scale and Rotation invariant

I want to see if a template in present in an image using openCv and c++. However due to different distance at which the image is taken and different position of the image, the match does not occur ...
0
votes
0answers
169 views

OpenCV Template Matching Drawing Rectangle Around Match

I want to use template matching, i am utilizing a code that i found that does what i want where it keeps it in bitmap and get a return of bitmap, the problem is im not entirely sure how i can get to ...
0
votes
1answer
108 views

How to find the transformation matrix for warpPerspective to bring the rotated image to the normalized position?

I need to process some of the information obtained from the scanner. The problem is the image I get occasionally rotated. I decided to add a few special objects on the photo to be able to use with ...
3
votes
1answer
158 views

How can I perform Template Matching process in SUB-IMAGE extracted from ORIGINAL-IMAGE and Display the results in Original Image

One whole day I have tried a lot to get all the related matches (with matchtemplate function) in sub-Image , which is ROI i have already extracted from the original image with the mousecallback ...
1
vote
2answers
169 views

What's the significance of a negative NCC coefficient w.r.t. image template matching?

I have been using Matlab's normxcorr2 function to do template matching with images by performing normalized cross correlation. To find the maximum correspondence between a template and an image, one ...
0
votes
1answer
287 views

Special Situation in Normalized Cross Correlation for template matching

I was working on the Normalized Cross Correlation for Template Matching in Spatial domain. While the method is slow, it works good enough for my purpose. But I saw a weird thing in there. Let me ...
1
vote
0answers
49 views

Color histogram similarity vs Template matching for “Video Matching”

I'm planning to create an application to check the similarity of two given videos by comparing the similarity of frames in the video. i think this can be done using both "color histogram" similarity ...
0
votes
0answers
32 views

Which template has been matched/found in the main image opencv?

Is it possible to see which template has been matched/found in the main image, like for example, when I use template matching, if it finds/matches template 1 in the main image, it prints out template ...
2
votes
0answers
82 views

OpenCV: Issue in running same-code on Android vs OSx

I've wrote simple template-matching program using OpenCV, which produces surprisingly different results on Android and OSx. First, see what I'm doing: IplImage *image = cvLoadImage("test3a.png", ...
0
votes
0answers
56 views

How to determine when there is no match while implementing the Template Matching Algorithm ?

I am trying to implement the Template Matching algorithm in java and right now i have a working prototype which tells me when there is a match. The algorithm is very inffecient an I am trying a way to ...
0
votes
1answer
191 views

Template Matching using FFT more efficient with gray-scale images?

Is Template Matching using FFT more efficient if the source and template images are gray-scale images? Also, let me piggy back. Does any one know of an excellent tutorial to implement Template ...
0
votes
0answers
268 views

OpenCV Log-Polar Template Matching

I'm trying to implement a Template Matching programm which is scale and rotation invariant. After searching and testing for some weeks I found an article about using Log-Polar coordinates to be scale ...
0
votes
1answer
352 views

Template Matching (Image Search) function in Python Imaging Library

I had a problem where I need to search for a pattern (present as a numpy ndarray) within another image (also present as a numpy ndarray) and compute a template match (minimum difference position in ...
2
votes
1answer
95 views

OpenCV Visualizing the Whole Process of TemplateMatching

I am fresh on OPENCV combined with C++. I have a question as following. If we would like to visualize the whole process when doing template matching, is that possible? If it does, which OPENCV's ...
0
votes
1answer
158 views

Missing Scope variable OpenCV c++

I have a program that should do template matching on an image and a template, here is the code : int main() { IplImage* imgOriginal = cvLoadImage("image.jpg", 0); IplImage* imgTemplate = ...
1
vote
1answer
303 views

Java out of bounds with template matching

I have recently been interested in template matching, I know librarys like OpenCV exist but i wanted to make a simple function to find all the points where a template can be found in a search ...
4
votes
2answers
323 views

numpy template matching using matrix multiplications

I am trying to match a template with a binary image (only black and white) by shifting the template along the image. And return the minimum distance between the template and the image with the ...
1
vote
1answer
523 views

how to detect known objects in OpenCV?

I am try to draw shapes in the window in real time. The shapes are like tangle ,rectangle ,circle , half or circle and "Z" in the screen using yellow color. The size and the shape may not be same to ...
0
votes
1answer
203 views

Alpha-dependent template matching

I'm using OpenCV with CUDA / CUBLAS / CUFFT support to perform some very basic template matching on grayscale screenshots to extract some text, meaning I can assume the following: I do know the exact ...
1
vote
1answer
313 views

Implementing template matching for individual characters/glyphs (OCR)

I'm working on a C# OCR program (project for my own learning purposes, nothing commercial-quality) that will recognize Hebrew characters. I plan to do this by separating the glyphs from the images and ...
0
votes
3answers
275 views

3D template matching by opencv

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 should ...
2
votes
1answer
1k views

Template matching using OpenCV

I'm trying to grab one image in my Android phone camera, define a template using ROI from this image, and then when successive images are grabbed, do template matching to find the new location of the ...
0
votes
0answers
324 views

Haar-like features to detect different droplet shape

I am writing a OpenCV C++ code to detect and differentiate between different shapes such as shown below: http://i50.tinypic.com/2u550t5.png (stackoverflow.com didn't allow me to post the image) The ...
3
votes
2answers
256 views

How to compare image with a slightly different another image(rotation, brightness, angle) in c#

I am creating an application to recognize books by its spine. What I want to do is take picture of a book spine and match it with a database of books. I was hoping to use pattern matching and ...
5
votes
2answers
3k views

scale and rotation Template matching

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 the ...
3
votes
1answer
483 views

Logo recognition - how to improve performance

I am working on a project of recognizing TV Channels. I am taking photos of the channels suck that i try to avoid the background and to take the sample from the center of the logo. I recognize 4 ...
1
vote
1answer
588 views

Java openCV - after using Imgproc.matchTemplate method, how do i examine the result?

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 result ...
0
votes
0answers
446 views

Detecting Textures in OpenCV?

I'm trying to detect a texture using OpenCV. The texture would be similar to that of a brush on a paintbrush, so on an image it would have many many little lines together. I've tried using Hough Lines ...
2
votes
1answer
190 views

Cope with brightness in grayscale template matching

I am using opencv for real-time template matching. The camera yields at 52fps grayscale images. The software works just fine but sometimes the matching fails because of bad light condition. The ...
-1
votes
2answers
400 views

Comparing two images(Book Spines) and recognize

I am creating an android application to recognize book in a library. What I do is I will take a image of the book spine of a book and send it to a server to do the image process there and recognize ...
1
vote
2answers
3k views

Object Tracking in EmguCV

I am building an object tracking program that should track the unknown object. The user must select a region in the live video stream that should be tracked. My project is similar to this video. ...
1
vote
1answer
501 views

Suggest template matching algorithm

I want to ask you to help to choose or find a good algorithm for the following problem: I want to recognize the template in the image, the template is a text of non standard font, so OCR possibly will ...
5
votes
1answer
2k views

OpenCV performance on template matching

I'm trying to do template matching basically on java. I used straightforward algorithm to find match. Here is the code: minSAD = VALUE_MAX; // loop through the search image for ( int x = 0; x <= ...
0
votes
3answers
1k views

Template Matching using FFT

Can anyone please explain how to perform template matching using FFT. The template is smaller than the original image. 1. Everywhere it states that the template has to be padded with zeros. How it is ...
2
votes
4answers
1k views

image matching, affine warp

My problem is shown here: problem statement. I have one template image, which i have to detect in the camera image. After it is detected i have to normalize the camera image by using an affine ...
1
vote
2answers
135 views

Merging pairs of nodes based on attribute, new to template matching

Say I have the following XML: <root> <tokens> <token ID="t1">blah</token> <token ID="t2">blabla</token> <token ...
2
votes
1answer
2k views

Template match - different sizes of template and image

I have an image, which I can obtain at better quality (e.g. higher size). The problem is that I can't do template match on default size, only on a higher one. And the higher one is not fixed - it can ...
8
votes
4answers
7k views

OpenCV template matching and transparency

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 ...
3
votes
2answers
317 views

Basic question regarding XSL template match

I've just begun to tinker with XML, and I have a question. XML File: <?xml version="1.0"?> <?xml-stylesheet type="text/xsl" href="style.xsl"?> <bucket version="Root Version ...
3
votes
2answers
239 views

Fast(er) way of matching feature to database

I'm working on a project where I have a feature in an image described as a set of X & Y coordinates (5-10 points per feature) which are unique for this feature. I also have a database with ...
0
votes
2answers
78 views

A name for a template-matching parameter

In my template-matching code I need the user to pass a floating-point parameter, which specifies whether the algorithm should concentrate only on the best matches (thus work faster) or analyse even ...
0
votes
1answer
912 views

Whenever I use cvMatchTemplate in openCV, I get a segmentation fault. Why?

I'm trying to do a simple template match in openCV and at the line in my code where I call cvMatchTemplate, I get a segmentation fault. I don't know if this is relevant, but i'm on a mac using x11 ...
0
votes
1answer
2k views

Template matching algorithms

Please suggest any template matching algorithms, which are independent of size and rotation. (any source codes as examples if possible please) EDIT 1: Actually I understand how the algorithm works, ...
3
votes
2answers
1k views

Aligning multiple images into one image? [closed]

What is a good method to align images together that may have different rotations, exposures, etc, but have the same background or other fixed reference? Adobe Photoshop can do this with its ...