Tagged Questions
Scale-invariant feature transform (SIFT) is an algorithm in computer vision to detect and describe local features in images.
20
votes
4answers
11k views
How to use SIFT algorithm to compute how similiar two images are?
I have used the SIFT implementation of Andrea Vedaldi, to calculate the sift descriptors of two similar images (the second image is actually a zoomed in picture of the same object from a different ...
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 ...
9
votes
2answers
315 views
David Lowe's SIFT — Question about scale space and image coordinates (weird offset problem)
I realize this is a highly specialized question.. but here goes. I am using an implementation of SIFT to find matches on two images. With the current implementation that I have, when I match an image ...
9
votes
4answers
1k views
Comparing SIFT features stored in a mysql database
I'm currently extending an image library used to categorize images and i want to find duplicate images, transformed images, and images that contain or are contained in other images.
I have tested the ...
7
votes
4answers
4k views
Sift implementation with OpenCV 2.2
Does someone know the link of example of SIFT implementation with OpenCV 2.2.
regards,
5
votes
1answer
685 views
OpenCV Python and SIFT features
I know there is a lot of questions about Python and OpenCV but I didn't find help on this special topic.
I want to extract SIFT keypoints from an image in python OpenCV.
I have recently installed ...
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
483 views
Can I use implementations of SIFT algorithm?
I'm interested in image recognition. From what I have found I can say that SIFT algorithm is one of the best of the available solutions. However, SIFT is protected with a US patent, so I wonder if I ...
3
votes
2answers
89 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
2answers
237 views
SiftDescriptorExtractor causes a memory leak
I am currently implementing SIFT to extract feature points from an image and noticed that I have a memory leak when I get the descriptors. Is there anyway I can free the memory that may be attached in ...
3
votes
2answers
367 views
How does it work comparing/matching images with kd-trees and nearest neighbor search?
I have been querying google for some material about kd-trees and image comparison but I couldn't make the 'link' between the technics for image comparison using kd-trees.
Firstly, I found some ...
3
votes
3answers
369 views
Implementations of image matching using “Scalable Recognition with a Vocabulary Tree”
Do you know of any implementations or improvements of the method of matching images proposed by David Nister and Henrik Stewenius, called "Scalable Recognition with a Vocabulary Tree"? I am trying to ...
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
341 views
Searching an Image Database Using SIFT
Several questions have been asked about the SIFT algorithm, but they all seem focussed on a simple comparison between two images. Instead of determining how similar two images are, would it be ...
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
1answer
51 views
SIFT prediction
I am using the SIFT implementation of Andrea Vedaldi, to calculate the sift descriptors of two images. But I would like to know if it is possible to predict where the object will be in next image, ...
2
votes
2answers
47 views
How to get a rectangle around the target object using the features extracted by SIFT in OpenCV
I'm doing project in OpenCV on object detection which consists of matching the object in template image with the reference image. Using SIFT algorithm the features get acurately detected and matched ...
2
votes
1answer
97 views
Linking Rob Hess's SIFT library (in C, using OpenCV) with C++
I'm trying to use Rob Hess's SIFT library in my C++ project. I've looked through (the code of) other SIFT implementations, but this one seemed most phase-divided like the original Lowe's paper and ...
2
votes
2answers
581 views
Scale Invariant Feature Transform (SIFT ) Implementation in Matlab
I am trying to implement SIFT in matlab. I am following the Lowe's 2004 paper. I completed upto calculation of keypoints and assigning orientations to them.(i.e for all octaves). Here i got one doubt ...
2
votes
1answer
467 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
313 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
1answer
165 views
SIFT- how to find similarity in more than 2 images
I know how to compare 2 images with SIFT (in matlab) but what if I have to find the similarity in between multiple images. Let for instance, I have 30 Images. How can I use SIFT to say that 10 of them ...
2
votes
1answer
190 views
What does SIFT do?
What does SIFT do? does it establish the feature correspondences between views? Does it receive the corners of the image sand remove the ones which are not descriptive? Does it do the matching?
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
2answers
474 views
Image Descriptors with SIFT/VLFEAT
I want to perform a classification task in which I map a given image of an object to one of a list of predefined constellations that object can be in (i.e. find the most probable match).
In order to ...
2
votes
3answers
936 views
How to use DoG Pyramid in SIFT
I am very new in image processing and pattern recognition. I am trying to implement SIFT algorithm where I am able to create the DoG pyramid and identify the local maximum or minimum in each octave. ...
2
votes
2answers
5k views
2
votes
6answers
5k views
Using SIFT for Augmented Reality
I've come across MANY AR libraries/SDKs/APIs, all of them are marker-based, until I found this video, from the description and the comments, it looks like he's using SIFT to detect the object and ...
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
1answer
64 views
kdtree vs histogram encoding
I'm working on object recognition using VLSift and it appears to me that there are various way to get this working. One method is to :
-extract SIFT features
-lookup features with kdtree that holds ...
1
vote
2answers
185 views
SIFT implementation of OCR in MATLAB
So for our Final Year Project we are making a nifty lil app that lets a user take pictures of visiting cards from their cell phone, apply OCR on it and get all the required info in printable form... ...
1
vote
1answer
61 views
an issue of getting Matrix for training sift features
I have extracted the features by using OpenCV opensource..
I have done these steps by using these 2 functions
SiftFeatureDetector
SiftDescriptorExtractor
which I got a matrix of 128*128 from the ...
1
vote
0answers
139 views
convert keypoints to mat or save them to text file opencv
I have extracted SIFT features in (opencv open source) and they are extracted as keypoints. Now, I would like to convert them to Matrix (With their x,y coordinates) or save them in a text file...
...
1
vote
0answers
125 views
David Lowe's SIFT and Scale Space to Pixel Space - Arrow Over Edge of Image Border
I have been using many implementation of SIFT. Some of the features when drawn extend over the edge of the image. They tend to use a conversion of 6 * sigma to convert from scale space to pixel space ...
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
1answer
220 views
Extract features, sift detector
I m little confused about Andrea Vedaldi implementation of the algorithm. I m trying to extract features with the algorithm sift of the toolbox.
I m using this command [frames,descriptors] = ...
1
vote
2answers
125 views
Is SIFT a segmentation algorithm?
I must track a person in a scene using a segmentation algorithm. SIFT will do the job but is it definitely considered a segmentation algorithm or something else altogether?
Many thanks.
1
vote
1answer
188 views
what is the relation of SIFT to NCC and ZNCC and its relation to Harris corner detector
Is SIFT a matching approach to replace ZNCC and NCC
or SIFT just provides input to NCC, in other words SIFT is proposed to be used as an alternative to Harris corner detection algorithm?
1
vote
1answer
166 views
SIFT and Neural Network Matlab
My project is to recognize ancient coins. I have used David Lowe's SIFT algorithm to extract features of images.
[siftImage, descriptors, locs] = sift(filteredImg);
Now I want to give these ...
1
vote
2answers
615 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
0answers
519 views
java code for sift algorithm [closed]
Possible Duplicate:
Implementing SIFT in Java
Hi
I need to compare an image with images in database using sift algorithm
Can anyone tell where I can get java coding for implementing this ...
1
vote
2answers
1k views
Implementing SIFT in Java
So I'm working on a simple Java app that allows a user to input an image as a query and have the app compare it against a database of images (which is basically no more than a directory of different ...
1
vote
3answers
832 views
GUI version of OpenCV for feature-detection (SIFT etc.) prototyping before actual project development?
I had an idea for which I need to be able to recognize certain objects or models from a rendered three dimensional digital movie.
After limited research, I know now that what I need is called feature ...
1
vote
2answers
229 views
euclidean distance in sift
I was trying to implement SIFT for my project and i have got the keypoints. I tried taking the euclidean distance of each keypoint of an image with all the keypoints of the same image but scaled down. ...
1
vote
1answer
462 views
Alternative to distance metric in nearest neighbor algorithm?
I came across an implementation of the nearest neighbor algorithm for finding matches between certain keypoints in two similar images. The keypoints were generated by the SIFT algorithm. The points ...
1
vote
1answer
321 views
Image registration
hello
any ideas on how to do a simple image registration (I have IMAGE1 and IMAGE2 takes from the same subject, but with camera moving a little and want to match IMAGE2 with IMAGE1)?
I checked MANY ...
1
vote
2answers
1k views
Is Approximate Nearest Neighbour the fastest feature matching in Computer Vision?
When using feature descriptors [like SIFT, SURF] - is Approximate Nearest Neighbour the fastest method to do matching between images?
0
votes
0answers
9 views
SIFT feature Complexity :implementation matlab
the complexity of SIFT feature extraction algorithm by Lowe
is their any web or something from where i can get it.
i think it is =>l.m ....where l is number of octaves and m is number of images in it.
...
0
votes
0answers
44 views
Detecting objects in an image using Robb Hess's SIFT library in OpenCV [closed]
I'm doing a project on detecting objects using Robb Hess's SIFT library in OpenCV.
While the code is working fine in detecting objects and detecting the objects in some frames it is giving false ...