Ask Your Question

ati90ati's profile - activity

2014-01-31 12:05:13 -0600 answered a question Image matching using SIFT and BRIEF

I have the same problem.

You can try to change the first two parameters with the second two parameters of drawMatches.
Ex.:
    (image, keypoints, target, keypoints1, ...);
to
    (target, keypoints1, image, keypoints, ...);

For me it's fixed my error.