Changed interface for drawMatches

This commit is contained in:
Victor Erukhimov
2010-06-12 06:30:00 +00:00
parent b34f0a2fa3
commit c751e901ce
4 changed files with 9 additions and 9 deletions

View File

@@ -42,7 +42,7 @@ int main(int argc, char** argv)
// drawing the results
namedWindow("matches", 1);
Mat img_matches;
drawMatches(img1, img2, keypoints1, keypoints2, matches, vector<char>(), img_matches);
drawMatches(img1, keypoints1, img2, keypoints2, matches, img_matches);
imshow("matches", img_matches);
waitKey(0);