What is the fastest C/C++ implementation of SURF out there? Is OpenCV superio开发者_JAVA技巧r or are there any standalone implementations that are faster? Matlab Mex wrappers is a plus.I expect that o
Recently, I have worked with robotics project; my robot can detect the object by its 开发者_如何学Ccolour but I found that not good enough for different object. Therefore, I want the robot SURF the im
I\'m using Surf for landmark recognition. This is the process I thought: 1) save before hand one Surf Descriptor for each landmark
A question about the object matching in Android-Opencv. As I cannot find any sample code of using SURF in Android platform. I would like to refer to some sample codes in C++.
I have a question about objects matching with OpenCV. I\'m useing SURF algorithm implemented in opencv 2.3 to first detect features on each image, and then extracting the descriptors of these features
I want to give alternative interest points as input to SURF using the -p1 command (I\'m using the authors implementation: http://www.vision.ee.ethz.ch/~surf/download.html). But I\'m not sure what to m
I need to know if this algorithm is a known one: void getMatches(IpVec &ipts1, IpVec &ipts2, IpPairVec &matches, float ratio) {
Here is the gpu surf code: #include <iostream> #include <iomanip> #include \"opencv2/contrib/contrib.hpp\"
As the CPU based SURF in opencv was very slow for realtime application, we decided to use GPU_SURF, after setting up the opencv_gpu we made the following code:
I\'m searching for a usable metric for SURF. Like how good one image matches another on a scale let\'s say 0 to 1, where 0 means no similarities and 1 means the same image.