只想清除我的困惑。我测试了openCV模板匹配方法来匹配一些数字。首先,我有一个数字序列0 1 2 3 4 5 1 2 3 4 5(二值化之后,字符宽度可能不同)。模板匹配如何与数字'1'匹配?是吗;
编辑:附件是输出。它只匹配一个数字'1'而不是两个'1'。
[问]如何同时检测两个数字'1'?
答案 0 :(得分:5)
我知道这是一个老问题,但这是一个答案。
当您进行MatchTemplate时,它将输出灰度图像。之后,您需要对其执行MinMax。然后,您可以检查您要查找的范围内是否有结果。在下面的例子中,使用EmguCV(C#中OpenCV的包装),我只在最低点(minValues数组的索引0)周围绘制一个矩形,只要它低于0.75(你可以根据需要调整这个阈值)。
以下是代码:
Image<Gray, float> result = new Image<Gray, float>(new System.Drawing.Size(nWidth, nHeight));
result = image.CurrentImage.MatchTemplate(_imageTemplate.CurrentImage, Emgu.CV.CvEnum.TM_TYPE.CV_TM_SQDIFF_NORMED);
double[] minValues;
double[] maxValues;
System.Drawing.Point[] minLocations;
System.Drawing.Point[] maxLocations;
result.MinMax(out minValues, out maxValues, out minLocations, out maxLocations);
if (minValues[0] < 0.75)
{
Rectangle rect = new Rectangle(new Point(minLocations[0].X, minLocations[0].Y),
new Size(_imageTemplate.CurrentImage.Width, _imageTemplate.CurrentImage.Height));
image.CurrentImage.Draw(rect, new Bgr(0,0,255), 1);
}
else
{
//Nothing has been found
}
<强> 修改 强>
以下是输出示例: