我正在使用OpenCV和C ++。我想检查图像是否是另一个图像的一部分,并且已经找到了一个名为matchTemplate
的函数。但是如果模板图像有点不同呢?是否有matchTemplate
这样的函数或方法可以检查模板是否是源图像的一部分,但是具有公差参数,如位置,角度,尺寸甚至可能变形?或者我需要一种完全不同于模板匹配的方法吗?
到目前为止,这是我的代码,它在源图像中找到模板图像,但没有(或几乎没有)容差。
#include <opencv2\core\core.hpp>
#include <opencv2\highgui\highgui.hpp>
#include <opencv2\imgproc\imgproc.hpp>
#include <opencv2\highgui\highgui.hpp>
#include <iostream>
#include <stdio.h>
using namespace cv;
using namespace std;
/// Global Variables
Mat img; Mat templ; Mat result;
const char* image_window = "Source Image";
const char* result_window = "Result window";
int match_method;
int max_Trackbar = 5;
/// Function Headers
void MatchingMethod( int, void* );
/**
* @function main
*/
int main( int, char** argv )
{
/// Load image and template
img = imread( "a1.jpg", 1 );
templ = imread( "a2.jpg", 1 );
/// Create windows
namedWindow( image_window, WINDOW_AUTOSIZE );
namedWindow( result_window, WINDOW_AUTOSIZE );
/// Create Trackbar
const char* trackbar_label = "Method: \n 0: SQDIFF \n 1: SQDIFF NORMED \n 2: TM CCORR \n 3: TM CCORR NORMED \n 4: TM COEFF \n 5: TM COEFF NORMED";
createTrackbar( trackbar_label, image_window, &match_method, max_Trackbar, MatchingMethod );
MatchingMethod( 0, 0 );
waitKey(0);
return 0;
}
/**
* @function MatchingMethod
* @brief Trackbar callback
*/
void MatchingMethod( int, void* )
{
/// Source image to display
Mat img_display;
img.copyTo( img_display );
/// Create the result matrix
int result_cols = img.cols - templ.cols + 1;
int result_rows = img.rows - templ.rows + 1;
result.create( result_cols, result_rows, CV_32FC1 );
/// Do the Matching and Normalize
matchTemplate( img, templ, result, match_method );
normalize( result, result, 0, 1, NORM_MINMAX, -1, Mat() );
/// Localizing the best match with minMaxLoc
double minVal; double maxVal; Point minLoc; Point maxLoc;
Point matchLoc;
minMaxLoc( result, &minVal, &maxVal, &minLoc, &maxLoc, Mat() );
/// For SQDIFF and SQDIFF_NORMED, the best matches are lower values. For all the other methods, the higher the better
if( match_method == TM_SQDIFF || match_method == TM_SQDIFF_NORMED )
{ matchLoc = minLoc; }
else
{ matchLoc = maxLoc; }
/// Show me what you got
rectangle( img_display, matchLoc, Point( matchLoc.x + templ.cols , matchLoc.y + templ.rows ), Scalar::all(0), 2, 8, 0 );
rectangle( result, matchLoc, Point( matchLoc.x + templ.cols , matchLoc.y + templ.rows ), Scalar::all(0), 2, 8, 0 );
imshow( image_window, img_display );
imshow( result_window, result );
return;
}
我在代码中使用的图片:
答案 0 :(得分:5)
您已经确定了模板匹配的主要限制。它对图像的任何变形都非常脆弱。模板匹配的工作原理是在图像周围滑动模板大小的框,并检查模板与框内区域之间的相似性。它使用逐像素比较方法检查相似性,例如归一化的互相关。如果要允许不同的大小和旋转,则需要编写一个循环来向上或向下缩放原始模板,或者旋转它。效率非常低。
如果您想允许变形,并且在不同的比例和旋转下进行更有效的搜索,标准方法是SURF。如果您的图像具有良好的分辨率,那么它非常有效,并且非常准确。您可以谷歌教程并找到使用SURF查找对象的示例代码。基本上,SURF识别模板和图像中的关键点(独特的图像区域)。然后,您会在图像中找到与模板匹配的关键点数最多的区域。 (如果你已经这样做了,这就是你所说的“功能匹配”,那么我认为你走的是正确的轨道。)