3

只是想消除我的困惑。我已经测试了 openCV 模板匹配方法来匹配一些数字。首先,我有这个数字序列 0 1 2 3 4 5 1 2 3 4 5 (二值化后字符宽度可能不同)。模板匹配如何匹配数字“1”?可以;

  1. 滑过所有窗口,直到找到 2 个匹配项(2 个输出),或
  2. 在匹配第一个“1”后停止,或
  3. 找到两个数字“1”之间的最高相关性,然后选择其中一个。

匹配数字“1”

编辑:如附件是输出。它只匹配一个数字“1”,而不匹配两个“1”。

[Q] 如何同时检测两个数字“1”?

4

1 回答 1

5

我知道这是一个老问题,但这里有一个答案。

当你做 MatchTemplate 时,它​​会输出一个灰度图像。之后,您需要对其执行 MinMax。然后,您可以检查您要查找的范围内是否有结果。在下面的示例中,使用 EmguCV(C# 中 OpenCV 的包装器),只有当它低于 0.75(您可以根据需要调整此阈值)时,我才会在最佳查找(minValues 数组的索引 0)周围绘制一个矩形。

这是代码:

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
}

编辑

以下是输出示例:

输出示例

于 2013-03-28T13:40:21.873 回答