I used OpenCV Surf method to fetch the keypoints and descriptors , it is working fine but taking so much time .
My code is : -
NSLog(@"Keypoint Detects");
//-- Step 1: Detect the keypoints using SURF Detector
int minHessian = 400;
SurfFeatureDetector detector( minHessian );
std::vector<KeyPoint> keypoints_object, keypoints_scene;
detector.detect( img_1, keypoints_object );
detector.detect( img_2, keypoints_scene );
//-- Step 2: Calculate descriptors (feature vectors)
NSLog(@"Descriptor Detects");
SurfDescriptorExtractor extractor;
Mat descriptors_object, descriptors_scene;
extractor.compute( img_1, keypoints_object, descriptors_object );
extractor.compute( img_2, keypoints_scene, descriptors_scene );
//-- Step 3: Matching descriptor vectors using FLANN matcher
NSLog(@"Matching Detects");
FlannBasedMatcher matcher;
std::vector< DMatch > matches;
matcher.match( descriptors_object, descriptors_scene, matches );
Xcode result of time : -
2015-10-26 13:22:27.282 AVDemo[288:26112] Keypoint Detects
2015-10-26 13:22:28.361 AVDemo[288:26112] Descriptor Detects
2015-10-26 13:22:30.077 AVDemo[288:26112] Matching Detects
Here it is taking 2 seconds to compute
I also used another method to fetch as : -
NSLog(@"Detect Keypoints");
cv::Ptr<cv::BRISK> ptrBrisk = cv::BRISK::create();
ptrBrisk->detect(img_1, camkeypoints);
//for keypoints
NSLog(@"Compute Keypoints");
ptrBrisk->compute(img_1, camkeypoints,camdescriptors);
if(camdescriptors.type()!=CV_32F) {
camdescriptors.convertTo(camdescriptors, CV_32F);
}
NSLog(@"camera image conversion end");
This is also working fine but having same problem of Time Xcode result : -
2015-10-26 14:19:47.939 AVDemo[305:32700] Detect Keypoints
2015-10-26 14:19:49.787 AVDemo[305:32700] Compute Keypoints
2015-10-26 14:19:49.818 AVDemo[305:32700] camera image conversion end
How can minimize this time ?
Now I used FASTfeatureDetector, that minimizes some time but still SurfDescriptorExtractor is taking time.
New Code is : -
NSLog(@"Keypoint Detects");
//-- Step 1: Detect the keypoints using SURF Detector
int minHessian = 15;
FastFeatureDetector detector( minHessian );
std::vector<KeyPoint> keypoints_object, keypoints_scene;
detector.detect( img_1, keypoints_object );
detector.detect( img_2, keypoints_scene );
//-- Step 2: Calculate descriptors (feature vectors)
NSLog(@"Descriptor Detects");
SurfDescriptorExtractor extractor;
Mat descriptors_object, descriptors_scene;
extractor.compute( img_1, keypoints_object, descriptors_object );
extractor.compute( img_2, keypoints_scene, descriptors_scene );
//-- Step 3: Matching descriptor vectors using FLANN matcher
NSLog(@"Matching Detects");
FlannBasedMatcher matcher;
std::vector< DMatch > matches;
matcher.match( descriptors_object, descriptors_scene, matches );
Xcode : -
2015-10-26 16:06:19.018 AVDemo[375:47824] Keypoint Detects
2015-10-26 16:06:19.067 AVDemo[375:47824] Descriptor Detects
2015-10-26 16:06:21.117 AVDemo[375:47824] Matching Detects