Ask Your Question

srinathsoman's profile - activity

2013-10-14 00:12:56 -0600 received badge  Critic (source)
2013-10-14 00:12:52 -0600 received badge  Critic (source)
2013-10-14 00:02:48 -0600 asked a question 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);