#include <stdio.h>#include <opencv/cv.h>

Go to the source code of this file.
Functions | |
| void | DrawFoundTargets (Mat *image, const Size &size, const vector< Point > &pointsList, const vector< double > &confidencesList, int red=0, int green=255, int blue=0) | 
| bool | FastMatchTemplate (const Mat &source, const Mat &target, vector< Point > *foundPointsList, vector< double > *confidencesList, int matchPercentage=55, bool findMultipleTargets=true, int numMaxima=10, int numDownPyrs=2, int searchExpansion=15) | 
| void | MultipleMaxLoc (const Mat &image, Point **locations, int numMaxima) | 
| void DrawFoundTargets | ( | Mat * | image, | 
| const Size & | size, | ||
| const vector< Point > & | pointsList, | ||
| const vector< double > & | confidencesList, | ||
| int | red = 0,  | 
        ||
| int | green = 255,  | 
        ||
| int | blue = 0  | 
        ||
| ) | 
Definition at line 284 of file FastMatchTemplate.cpp.
| bool FastMatchTemplate | ( | const Mat & | source, | 
| const Mat & | target, | ||
| vector< Point > * | foundPointsList, | ||
| vector< double > * | confidencesList, | ||
| int | matchPercentage = 55,  | 
        ||
| bool | findMultipleTargets = true,  | 
        ||
| int | numMaxima = 10,  | 
        ||
| int | numDownPyrs = 2,  | 
        ||
| int | searchExpansion = 15  | 
        ||
| ) | 
Definition at line 32 of file FastMatchTemplate.cpp.
| void MultipleMaxLoc | ( | const Mat & | image, | 
| Point ** | locations, | ||
| int | numMaxima | ||
| ) | 
Definition at line 230 of file FastMatchTemplate.cpp.