模板匹配的OpenCV性能

时间:2011-08-21 16:43:22

标签: java image templates opencv template-matching

我正在尝试基本上在java上进行模板匹配。我用简单的算法找到匹配。这是代码:

minSAD = VALUE_MAX;
// loop through the search image
for ( int x = 0; x <= S_rows - T_rows; x++ ) {
    for ( int y = 0; y <= S_cols - T_cols; y++ ) {
        SAD = 0.0;

        // loop through the template image
        for ( int i = 0; i < T_rows; i++ )
            for ( int j = 0; j < T_cols; j++ ) {

                pixel p_SearchIMG = S[x+i][y+j];

                pixel p_TemplateIMG = T[i][j];

                SAD += abs( p_SearchIMG.Grey - p_TemplateIMG.Grey );
            }
    }

    // save the best found position 
    if ( minSAD > SAD ) {
        minSAD = SAD;
        // give me VALUE_MAX
        position.bestRow = x;
        position.bestCol = y;
        position.bestSAD = SAD;
    }
}

但这是非常缓慢的方法。我测试了2张图像(768×1280)和子图像(384 x 640)。这持续多年。 openCV使用ready函数cvMatchTemplate()可以更快地执行模板匹配吗?

1 个答案:

答案 0 :(得分:39)