how to visualise matching descriptor while object detection in iOS
how can i implement the following code for visulizing a detected image in iOS
namedWindow("matches", 1);
Mat img_matches;
drawMatches(img1, keypoints1, img2, keypoints2, matches, img_matches);
imshow("matches", img_matches);
waitKey(0);
add a comment