在以下模板匹配代码中,我不明白以下行正在做什么:
cv::Mat res(ref.rows-tpl.rows+1, ref.cols-tpl.cols+1, CV_32FC1);
完整的代码是:
#include <opencv2/highgui/highgui.hpp>
#include <opencv2/imgproc/imgproc.hpp>
int main()
{
cv::Mat ref = cv::imread("ref.jpg");
cv::Mat tpl = cv::imread("temp.jpg");
if (ref.empty() || tpl.empty())
return -1;
cv::Mat gref, gtpl;
cv::cvtColor(ref, gref, CV_BGR2GRAY);
cv::cvtColor(tpl, gtpl, CV_BGR2GRAY);
cv::Mat res(ref.rows - tpl.rows + 1, ref.cols - tpl.cols + 1, CV_32FC1);
cv::matchTemplate(gref, gtpl, res, CV_TM_CCOEFF_NORMED);
cv::threshold(res, res, 0.8, 1., CV_THRESH_TOZERO);
while (true)
{
double minval, maxval, threshold = 0.8;
cv::Point minloc, maxloc;
cv::minMaxLoc(res, &minval, &maxval, &minloc, &maxloc);
if (maxval >= threshold)
{
cv::rectangle(
ref,
maxloc,
cv::Point(maxloc.x + tpl.cols, maxloc.y + tpl.rows),
CV_RGB(0, 255, 0), 2
);
cv::floodFill(res, maxloc, cv::Scalar(0),
0, cv::Scalar(.1), cv::Scalar(1.));
}
else
break;
}
cv::imshow("reference", ref);
cv::waitKey();
return 0;
}
答案 0 :(得分:1)
它正在创建包含匹配结果的矩阵。
的文件参考您的代码:
image -> ref
template -> tpl
W -> ref.cols
H -> ref.rows
w -> tpl.cols
h -> tpl.rows
single-channel 32-bit floating-point -> CV_32FC1
但是,由于matchTemplate
将创建结果图像,因此您无需创建它。你可以简单地说:
...
cv::Mat res;
cv::matchTemplate(gref, gtpl, res, CV_TM_CCOEFF_NORMED);
...