fixing tutorial errors master branch

This commit is contained in:
StevenPuttemans 2015-01-28 13:56:29 +01:00
parent 6e565ab4a4
commit be1728fba1

View File

@ -146,7 +146,7 @@ Explanation
int result_cols = img.cols - templ.cols + 1;
int result_rows = img.rows - templ.rows + 1;
result.create( result_cols, result_rows, CV_32FC1 );
result.create( result_rows, result_cols, CV_32FC1 );
@endcode
-# Perform the template matching operation:
@code{.cpp}