4

无论如何让这件事走得更快?因为现在它在 sourceImage 上大约需要 6 秒,大小为 1024x768,模板大约为 50x50。这是使用 AForge,如果有人知道其他更快更简单的方法,请提交。我正在尝试做的任务是在屏幕截图中找到一个较小的图像。最好快,我的限制是 1 秒。我正在寻找的图像是一个红色矩形简单图像,屏幕截图更复杂。

System.Drawing.Bitmap sourceImage = (Bitmap)Bitmap.FromFile(@"C:\SavedBMPs\1.jpg");
System.Drawing.Bitmap template = (Bitmap)Bitmap.FromFile(@"C:\SavedBMPs\2.jpg");
// create template matching algorithm's instance
// (set similarity threshold to 92.5%)

ExhaustiveTemplateMatching tm = new ExhaustiveTemplateMatching(0.921f);
// find all matchings with specified above similarity

TemplateMatch[] matchings = tm.ProcessImage(sourceImage, template);
// highlight found matchings

BitmapData data = sourceImage.LockBits(
    new Rectangle(0, 0, sourceImage.Width, sourceImage.Height),
    ImageLockMode.ReadWrite, sourceImage.PixelFormat);
foreach (TemplateMatch m in matchings)
{

        Drawing.Rectangle(data, m.Rectangle, Color.White);

    MessageBox.Show(m.Rectangle.Location.ToString());
    // do something else with matching
}
sourceImage.UnlockBits(data);
4

1 回答 1

2

http://opencv.willowgarage.com/wiki/FastMatchTemplate - 在这里您可以找到使用两个步骤加速模板匹配的有趣想法,首先尝试匹配下采样图像,然后在找到时匹配具有较小搜索区域的原始图像。

matchTemplate 函数中还有模板匹配的 opencv 实现。此功能已移植到 GPU,可以显着提高速度。

请参阅以下内容

http://opencv.willowgarage.com/documentation/cpp/object_detection.html - matchTemplate 函数。 http://opencv.willowgarage.com/wiki/OpenCV_GPU - 关于移植到 GPU 的 OpenCV 功能。

于 2012-02-27T10:15:26.700 回答