Tagged Questions
The surf tag has no wiki summary.
14
votes
3answers
9k views
OpenCV / SURF How to generate a image hash / fingerprint / signature out of the descriptors?
There are some topics here that are very helpful on how to find similar pictures.
What I want to do is to get a fingerprint of a picture and find the same picture on different photos taken by a ...
14
votes
7answers
10k views
SURF and SIFT Alternative Object Tracking Algorithm for Augmented Reality
After asking here and trying both SURF and SIFT, none of them seams to be efficient enough to generate interest points fast enough to track a stream from the camera.
SURF, for example, takes around 3 ...
6
votes
1answer
243 views
Metric for SURF
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.
SURF provides the following ...
5
votes
2answers
374 views
A good method for detecting the presence of a particular feature in an image
I have made a videochat, but as usual, a lot of men like to ehm, abuse the service (I leave it up to you to figure the nature of such abuse), which is not something I endorse in any way, nor do most ...
4
votes
2answers
2k views
OpenCV 2.2 SURF Feature matching problems
I have modified the OpenCV demo application "matching_to_many_images.cpp" to query a image (left) to a frames from the webcam (right). What have gone wrong with the top right corner of the first ...
3
votes
1answer
36 views
stitching microscope images of a microchip
So, I'm trying to stitch images taken by a microscope of a microchip, but it's very hard to have all the features aligned. I already have a 50% overlap between two adjacent images, but even with that, ...
3
votes
2answers
90 views
OpenCV matching images
I am trying to use OpenCV to match images like these:
And I need to find the best intersection of them.
I tried using SURFDetector and matching using BruteforceMatcher, but finds descriptors not ...
3
votes
1answer
280 views
How to match SURF interest points to a database of images
I am using the SURF algorithm in C# (OpenSurf) to get a list of interest points from an image. Each of these interest points contains a vector of descriptors , an x coordinate (int), an y coordinate ...
3
votes
1answer
282 views
Feature/blob correlation and histogram analysis
I'm working on a sketch search engine that correlates whatever someone's sketching with a picture in the database (the db is just about 40 pictures now). I'm doing this mostly for fun so I'm not that ...
3
votes
3answers
3k views
SIFT, HOG and SURF c++, opencv
I have a simple question, which I want to know, what kind of libraries are available and can give good results for implementing SIFT, HOG(Histogram Oriented Gradient) and SURF in c++ or opencv?
...
3
votes
1answer
761 views
Weird result with SURF comparison
I'm trying to implement a traffic sign recognizer with OpenCV and SURF method. My problem is that i get random results (sometimes really accurate, sometimes obviously wrong) and i cant undertsand why. ...
3
votes
2answers
902 views
What is a vocabulary tree and how to build one?
I'm reading a lot about vocabulary trees when it comes to fast queries for similar images or texts in big databases. But I couldn't find any good (easy to unserstand) description on what such an ...
2
votes
3answers
72 views
Detecting SURF features - disappointed by the performance
I was looking to extract SURF features (or something similar) in an application that gets new images at 25 FPS. I thought feature extracting would be possible at least close to real time. I tried ...
2
votes
1answer
468 views
Detecting outliers in SURF or SIFT algorithm with OpenCV
Which method is the best to compare two images and discard outliers points? In find_obj.cpp opencv example, they use FLANN, but don't discard outliers.
I have seen some methods like using Kmeans or ...
2
votes
2answers
314 views
Explain this algorithm (Compare points in SURF algorithm)
I need to know if this algorithm is a known one:
void getMatches(IpVec &ipts1, IpVec &ipts2, IpPairVec &matches, float ratio) {
float dist, d1, d2;
Ipoint *match;
...
2
votes
0answers
94 views
SURF interest point parameters
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 ...
2
votes
1answer
530 views
Descriptor evaluation for SURF opencv
I'm doing a project on SURF and so far I have implemented SURF features successfully, and I have done the feature evaluation correctly as well. But I don't know how to do the DESCRIPTOR evaluation... ...
2
votes
2answers
1k views
SIFT and SURF feature extraction Implementation using MATLAB
I am doing an ancient coins recognition system using matlab. What I have done so far is,
1. convert to grayscale
2. remove noise using Gaussian filter
3. contrast enhancement
4. edge detection using ...
2
votes
0answers
515 views
Differences between OpenCV SURF and OpenSURF?
I am trying to use (SURF(opencv); [OPENSURF c++;OPENSURFC#]
OPensurf http://www.chrisevansdev.com/computer-vision-opensurf.html), SIFT for image matching.
I have the feeling that SIFT is more ...
2
votes
3answers
436 views
Computer Vision: SURF (Speeded Up Robust Features) with Color consideration
Is it possible to enhance the Speeded Up Robust Features (SURF) Computer Vision algorithm so that it can differentiate equally distributed and shaped objects with different colors?
I am looking for ...
2
votes
1answer
369 views
How to visualize a 3d scene using surf
I have an image loaded from disk as a texture, and a same-sized matrix d which has the corresponding depths.
How can I use surf to show me the image as a 3d-model? Simply taking
surf(depthMatrix, ...
2
votes
1answer
2k views
matlab: how to plot multidimensional array
Let's say I have 9 MxN black and white images that are in some way related to one another (i.e. time lapse of some event). What is a way that I can display all of these images on one surface plot?
...
2
votes
2answers
1k views
How to get a beautiful color scale on (semi-)logarithmic 3d plots on Matlab?
After having this question answered through a link to an external site, I realized that I solved a problem, just to get another one: On a logarithm scale the C=Z parameter of MESH and SURF functions ...
1
vote
1answer
45 views
OpenCV Surf and Outliers detection
I know there are already several questions with the same subject asked here, but I couldn't find any help.
So I want to compare 2 images in order to see how similar they are and I'm using the well ...
1
vote
0answers
57 views
Solutions on snaptell-like Image recognition and comparison to product database records
I am looking for a solution VERY similar to what you get if you've used the iphone app "SnapTell". You take a picture of something and retrieve the actual image of it and prices, details, and ...
1
vote
2answers
129 views
Why does the flann based descriptor matcher match to different keypoints everytime?
Is it normal? When I tried the brute force matcher, the result is consistent everytime, but flann is not.
A small amount of keypoints will match to different places. I am writing the code using the ...
1
vote
1answer
124 views
opencv image search
I'm aiming to search through a library of images using an image as the query. I want to use SURF and a customized NN technique to match relevant images and display the top ten results from that image.
...
1
vote
1answer
99 views
Is it possible to get the rotation and scale between two images with only a Surf Descriptor of each?
I'm using Surf for landmark recognition. This is the process I thought:
1) save before hand one Surf Descriptor for each landmark
2) A user takes a photo of a landmark (eg building)
3) A Surf ...
1
vote
1answer
144 views
Fund matrix using Surf with Ransac in Matlab
I'm trying to implement SURF with Ransac for fundamental(F) matrix estimation in Matlab. Then I calculated epipoles as null spaces of F matrix. I used OpenSURF from File Exchange and Ransac from ...
1
vote
1answer
104 views
Detect clip arts or vectorial images using OpenCV in C++
I have a process that detects similar images using SURF and I want to add a check to know which images are real camera photos and which ones are vectorial images like logos of map-screenshots.
...
1
vote
1answer
89 views
How to get size for subimage from SURF descriptor
I want to copy the part of an image which is descibed by a SURF descriptor. I know that the 9x9 filter in surf has a scale of 1.2. So if I have for example a descriptor with a scale of 1.2 is the part ...
1
vote
1answer
244 views
display keypoints from opencv on iphone ios 4
Hey
I'm trying to implement feature detector algorithms in iphone (surf and sift). I already manage to collect raw video stream which I proccess with OpenCV. The problem is that my function returns ...
1
vote
2answers
311 views
C++ compare surf descriptors algorithm match breaks some times
I wrote a c++ application that compares points matches from images (OpenSurf C++) but some times, 1 from some thousands of "getUniqueMatches", the application breaks in some point inside ...
1
vote
2answers
616 views
SIFT and SURF Implementation Libraries
In my last question I asked about SIFT and SURF implementation in MATLAB source codes and several links were received. Thanks for all. Now, I have another question. These SIFT implementations are like ...
1
vote
1answer
401 views
Matching with SURF(Conceptual)
I am using surf to match n images together. finding fundamental matric by to remove outliers in matching stage. Surprisingly i am finding fundamental matrix even though matching points are totally ...
1
vote
2answers
1k views
Homography, inliers/ Emgu CV/ SURF in C#
How can I get inliers/outliers of matched kyepoints using homography or some other method in C#?
I am working on SURF example provided on ...
1
vote
1answer
105 views
What is SSO authentication touch point used for?
I find there are following code in NTLMAuthenticationFilter.java which used for alfresco share SSO authenticate:
Response remoteRes;
if (cachedNtlm)
{
Connector conn = ...
1
vote
1answer
866 views
OpenCV SURF, is it normal that the captured videos lag by a little? How to speed it up?
How do I speed up the correspondence matching processes of SURF? I used the samples provided and changed it to capture color images from the webcam for processing, however, the speed certainly needs ...
1
vote
2answers
1k views
Find Exact Matches of SURF in openCV
I am using openCV Surf tracker to find exact points in two images.
as you know, Surf returns many Feature points in both images. what i want to do is using these feature parameters to find out which ...
1
vote
2answers
58 views
Is there a way to show a 3-D surface plot in the browser?
I've got a bunch of data for 3-D surface plots. I want to build a quick web interface to let me browse through that data. Are there any (free) packages out there that can easily show surface plots? I ...
1
vote
3answers
9k views
How to draw a SURF graph without black edges in Matlab?
The black lines are awfull, how I get rid of them? I want only the colored surfaces.
0
votes
0answers
41 views
How to get the SURF descriptor for an arbitrary point
Is there any way to get the SURF descriptor for an arbitrary point at a image?
0
votes
2answers
58 views
Alfresco share page state history
How can I manage page state history in share (surf?) so that I remember for example which yui tab was active and on which page the pager was on?
I noticed that alfresco share does something like that ...
0
votes
2answers
195 views
Compare SURF descriptors in one image to a list of descriptors in other images
I want to compare the SURF descriptors in one image (A), with the descriptors in several other images (B,C,D,..) to find the most similar image to A. The descriptors have 64 dimensions.
Using C# and ...
0
votes
1answer
170 views
Does openCV SurfFeatureDetector unnecessarily extract descriptors internally?
I just wondered, if using a SurfFeatureDetector to detect keypoints and a SurfDescriptorExtractor to extract the SURF descriptors (see code below as described here) wouldn't extract the descriptors ...
0
votes
2answers
26 views
Setup arrays from tabular data in txt file with MATLAB
So basically, I have data in a text file like so:
100 5 10 20 someval someval
200 6 20 12 someval someval
300 7 30 13 someval someval
The first 3 tokens would by used as (x, y, z) coordinates, ...
0
votes
1answer
107 views
Fast C/C++/MATLAB SURF Feature Library
What is the fastest C/C++ implementation of SURF out there? Is OpenCV superior or are there any standalone implementations that are faster? Matlab Mex wrappers is a plus.
0
votes
2answers
159 views
How can I match a template with the original image by SURF?
Recently, I have worked with robotics project; my robot can detect the object by its colour but I found that not good enough for different object. Therefore, I want the robot SURF the image on real ...
0
votes
1answer
430 views
Android-Opencv: Procedure of using SURF in opencv
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++.
But I have no idea ...
0
votes
1answer
1k views
OpenCV - Object matching using SURF descriptors and BruteForceMatcher
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.
...