0

パターン認識には次のコードを使用しました。しかし、それは誤ったマッチング結果を与えています。何が悪いのか教えてください。これはxcodeで書かれています。

Mat img_display;
img.copyTo( img_display );

/// Create the result matrix
int result_cols =  img.cols - templ.cols + 1;
int result_rows = img.rows - templ.rows + 1;

result.create( result_cols, result_rows, CV_32FC1 );

/// Do the Matching and Normalize
matchTemplate( img, templ, result, 5 );
normalize( result, result, 0, 1, NORM_MINMAX, -1, Mat() );

/// Localizing the best match with minMaxLoc
double minVal; double maxVal; Point minLoc; Point maxLoc;
Point matchLoc;

minMaxLoc( result, &minVal, &maxVal, &minLoc, &maxLoc, Mat() );


/// For SQDIFF and SQDIFF_NORMED, the best matches are lower values. For all the other methods, the higher the better
if( match_method  == CV_TM_SQDIFF || match_method == CV_TM_SQDIFF_NORMED )
{
    matchLoc = minLoc;
    printf("fsf");
}
else
{
    matchLoc = maxLoc;
    printf("fsf2");
}

/// Show me what you got
rectangle( img_display, matchLoc, Point( matchLoc.x + templ.cols , matchLoc.y + templ.rows ), Scalar::all(0), 2, 8, 0 );
//rectangle( result, matchLoc, Point( matchLoc.x + templ.cols , matchLoc.y + templ.rows ), Scalar::all(0), 2, 8, 0 );

//imshow( image_window, img_display );
//imshow( result_window, result );

return img_display;

前もって感謝します 。ここにスクリーンショットを添付しましたここに画像の説明を入力してください

ここに画像の説明を入力してください

4

1 に答える 1

1

result.create( result_cols, result_rows, CV_32FC1 ); を置き換える必要があります。result.create(result_rows, result_cols, CV_32FC1 );

于 2013-09-17T21:31:40.547 に答える