Speeded Up Robust Feature (SURF) is a feature detector used in computer vision tasks like object recognition, 3D reconstruction, camera calibration.
0
votes
1answer
13 views
SURF feature detectors
Maybe this is not a good question but I am confused with one thing. I am using SURF features in OpenCV where the input images are converted to GRAY image.
cvtColor(object, object, CV_RGB2GRAY);
...
-1
votes
0answers
28 views
SIFT is patented,Are there any free alternatives to find Image within a image [closed]
My requirement is to find whether an image (small image) is a part of another image(large image) and I need to do this in java.
After doing lots of research I found SIFT algorithm (and some other ...
0
votes
0answers
37 views
OpenCV 2.4.3 - warpPerspective with reversed homography on a cropped image
When finding a reference image in a scene using SURF, I would like to crop the found object in the scene, and "straighten" it back using warpPerspective and the reversed homography matrix.
Meaning, ...
0
votes
0answers
5 views
how to plot multidim array in matlab
I got a function of three parameters that I wanted to plot in matlab and I varied the values of the parameters (50 values for each parameter) for creating a multidimensional array 50x50x50. At first I ...
0
votes
2answers
59 views
How to find the best match using surf opencv using c++
Im using Opencv C++, in VS201o for a face recognition application. For that i used SURF,
BruteForceMatcher.
BFMatcher matcher;
vector< DMatch > matches;
//match: execute the matcher!
...
0
votes
0answers
36 views
object detection using SURF and FLANN features
I am using OpenCV's SURF feature extraction and Flann matcher. I have an existing database of images, and a webcam from which I obtain data. I want to compare the webcam images with the database ...
0
votes
1answer
23 views
change descriptor Size in SURF
I am trying to change the descriptor Size to be 128 instead of 64 in openCV
does anybody know how can I change it
here is a part of my code
{
SurfFeatureDetector detector( minHessian , 1 ...
0
votes
2answers
64 views
emgu finding image a in image b [duplicate]
I'm new to emgu and would like some advice on where to start.
I've looked through the shape detection but its far too complex for what i need .. i think.. and my surfexample isn't working. I get this ...
1
vote
1answer
33 views
OpenCV Max Detection Range
I am wondering what is the maximum distance of detection/recognition of an image using SURF method? Has any one tried. Camera: Logitech Webcam Pro 9000
0
votes
1answer
63 views
Error cv::SURF::SURF(double,int,int,bool,bool) in Implementation SURF with OpenCV and C++
Possible duplicate of OpenCV SURF function is not implemented
My Error code is:
error LNK2019: unresolved external symbol "public: __thiscall cv::SURF::SURF(double,int,int,bool,bool)" ...
1
vote
2answers
84 views
OpenCV: howto use mask parameter for feature point detection (SURF)
I want to limit a SurfFeatureDetector to a set of regions (mask). For a test I define only a single mask:
Mat srcImage; //RGB source image
Mat mask = Mat::zeros(srcImage.size(), srcImage.type());
Mat ...
0
votes
0answers
38 views
Failed SURF output
I am trying to find the three cervical vertebrae (C2 , C3 , C4) in x-ray videos (gray images)
I am using SURF to identify the place that has these 3 vertebrae (big box for all of them )
SURF gives me ...
1
vote
1answer
63 views
Strange Octave value in SIFT algorithm?
I am using sift algorithm in opencv code to get descriptors and keypoints from images.My code is
Ptr<IplImage> image;
vector<KeyPoint> keypoints;
OutputArray des;
...
0
votes
1answer
76 views
Strange result of SURF_GPU and BruteForceMatcher_GPU with knnMatch
OpenCV 2.4.5, CUDA 5.0
I tried to transfer my SURF matcher from the CPU to the GPU and got such a strange result. I use knnMatch and findHomography + perspectiveTransform together with my function, ...
0
votes
1answer
191 views
OpenCV for Android - training SVM with SURF descriptors
I need some help in training a SVM for an Android app.
I have a set of images in different classes (12 classes) and got all descriptors from them. I managed to get the same amount of descriptors for ...
1
vote
1answer
68 views
What are the features in feature detection algorithms and other doubts
I am going through feature detection algorithms and a lot of things seems to be unclear. The original paper is quite complicated to understand for beginners in image processing. Shall be glad if these ...
3
votes
1answer
104 views
Best algorithm for feature detection in urban environment - OpenCV
I'm using OpenCV library (C++) to extract detectors from 2 images coming from a video stream taker from an aerial camera in order to, afterwards, find the matching points in successive images. i'm ...
0
votes
1answer
74 views
OpenCV - FLANN algorithm does't obtain enough matching point
I'm a neophyte of computer vision
I'm using this algorithm http://docs.opencv.org/doc/tutorials/features2d/feature_flann_matcher/feature_flann_matcher.html proposed by OpenCV in order to calculate ...
0
votes
1answer
98 views
SURF features in EmguCv: how to extract a fixed number of features
I want to train a neural network in order to classify different classes of grayscale images.
As input of this network, I want to use the features extracted by the SURF-128 algorithm. The following ...
0
votes
1answer
273 views
SURF Feature Extraction With Android OpenCV SDK - Getting Some Errors
I am trying to implement SURF features in my project which is about face recognition. I am new at opencv on android. So it is a little bit hard to find logical errors. Also i tried to search from ...
7
votes
1answer
100 views
FeatureDetector vs. FeatureFinder in OpenCV
I'm trying to understand the difference between the FeatureDetector class and the FeatureFinder class. I've seen panorama examples written in OpenCV use both of these classes and it appears to be ...
0
votes
1answer
90 views
using SURF to compare frame with multiple images gives me same result
i'm using openCV 2.44 with visual c++ 2010
i want to make recognize several objects using an webcam and printf the object's name when found, but when i compare with the frame i get same value for each ...
0
votes
1answer
334 views
Combination of camshift and opencv
I'm trying to do object detecting jobs using OpenCV. But there is something confuses me. Tracking & predicting algorithm like camshift and kalman filters can fulfill the task of tracking while ...
-2
votes
1answer
94 views
opencv SURF extractor.compute error
i use openCV 2.44 and visual studio C++ 2010
when i compile this
#include <opencv2/imgproc/imgproc_c.h>
#include <stdio.h>
#include <math.h>
#include <opencv/highgui.h>
...
0
votes
1answer
329 views
OCR detection with openCV
I'm trying to create a simpler OCR enginge by using openCV. I have this image: https://dl.dropbox.com/u/63179/opencv/test-image.png
I have saved all possible characters as images and trying to detect ...
0
votes
0answers
205 views
OpenCV undefined reference to cv::SURF::SURF() eclipse
I am trying to stitch images in android like panorama view.I am trying to use surf descriptor for stitching images.I am using 2.4.0 version of openCv because upper version doesn't contain nonfree ...
0
votes
1answer
106 views
SURF error while tracking object
I am trying to find an object in the videos by calling SURF function for each frame ...
this is the SURF Function
{
void Identify_SURF_Frame (Mat img_object , Mat img_scene , CvRect in_box)
{
...
0
votes
2answers
115 views
Cannot implement SURF in Android using JavaCV
I am trying to develop a simple Android app that will get the current frame from the camera on the phone using PreviewCallback. Then perform SURF feature detection and extraction using the ...
0
votes
0answers
33 views
SURF Algo in EmguCV, I need some advice
I am using the surf feature in EmguCV to achieve surf. Website is here.
The problem is, I want to implement by a sequence of picture, not only two pictures.
I want to compare and detect the picture I ...
0
votes
0answers
53 views
TopSurf_LoadDescriptor method
Hi if there is any one have worked with the top surf tool I need to know how to use the TopSurf_LoadDescriptor method. The application presents an option to save extracted descriptors to disk, I need ...
0
votes
2answers
95 views
Encoding CV_32FC1 Mat data with base64
Hello I am trying to extract the data from a SURF descriptor, when I try this with an ORB descriptor it works. When I use the SURF one the program quits with a segmentation fault 11 on the base64 ...
0
votes
1answer
145 views
Is local sensitive hashing algorithm only compatible with binary descriptors in opencv / flann?
I am trying to use local sensitive hashing algorithm in flann in opencv 2.4.4. Here is my code
Ptr<IplImage> cluster_image = cvLoadImage("C:\\Users\\Administrator\\Pictures\\1.jpg");
...
0
votes
2answers
170 views
SIFT or SURF object detection
Please help me out in finding codes for SIFT and SURF object detection. I don't know OpenCV. Where can I download codes for SIFT or SURF object detection?
0
votes
1answer
136 views
error in miniflann.cpp using SURF descriptors
I have been working with Opencv for such time. This time, I faced a problem that irritated me so much.
In fact, I have a template image and i want to use the matching to recognize it in my camera ...
1
vote
2answers
104 views
SURF not bound in opencv-python?
I'm getting this error when trying to use cv.ExtractSURF:
cv2.error: OpenCV was built without SURF support
I found the solution for c++ in this topic:
OpenCV SURF function is not implemented
...
0
votes
0answers
112 views
Improving the performance of SURF on small images
Every implementation of SURF I have come across on the web seems to be particularly bad at extracting a useful number of interest points from small images (say, 100x100 or less).
I have tried a ...
-1
votes
1answer
44 views
Scaling up SURF lookups
I am currently trying to recognise DVD covers in generic photos. My initial test involved using 100 DVD covers and 10 test cases of photos that contained them, and with some tweaking of the ...
1
vote
2answers
109 views
Converting Mat to Keypoint?
I'm writing both descriptors (SurfDescriptorExtractor output) and keypoints (SurfFeatureDetector output) to an XML file.
Before writing keypoints (std::vector) conversion to Mat is done ( following ...
1
vote
1answer
220 views
OpenCV: Issues in using color frames with SURF features
I am trying to work with this code so that SURF can be implemented using color frames/images and then use the code here Kalman_Color_Object_Trackto track the detected object using the color value by ...
0
votes
0answers
108 views
How can I get a descriptor (SURF descriptor) for a given point?
I have a problem where I have a point in an image and I want to find the most similar point in another image. In order to do so I tried declaring my own keypoint and extracting a descriptor using ...
0
votes
1answer
194 views
Speeded-Up Robust Features SURF
I'm implementing SURF algorithm and I'm referring to the Chris Evan's OpenSURF .
In OpenSURF and in almost all the other SURF implementations I see that when Dxx and Dyy are computed a multiplying ...
0
votes
0answers
333 views
Python bindings for OpenCV with AttributeError: 'module' object has no attribute 'FeatureDetector_create'
I am using OpenCV 2.3.2 and python but after some sample code and tutorials, and even this simple three-liner:
import cv2
print cv2.__version__
detector = cv2.FeatureDetector_create("SURF")
after ...
1
vote
1answer
228 views
Runtime error Visual Studio and OpenCV Error while using SURF
The following code is supposed to perform feature detection using SURF in OpenCV2.3 on Visual Studio 2010. The image "sample.jpg" is a coloured image (RGB) of a book and the video captured will ...
0
votes
0answers
87 views
How to make a autosurfer that uses proxies
I'm creating a vb.net Program that uses proxy to surf a site automatically.
Here must be my program:
This is what I got
<Page x:Class="Page1"
...
8
votes
1answer
358 views
Seperating similiar object in an image - opencv python
I am trying to detect the objects in an image which look similiar to the reference image. Here is how i'm trying to accomplish it:
Here is the sample Image:
and here is the image with SURF ...
0
votes
0answers
251 views
javacv cvExtractSURF
I’m trying to implement the example for using JavaCv Surf.
I downloaded the example code, the .jar files and installed everything that the official web page asks for ...
2
votes
3answers
547 views
OpenCV Combining SURF with Neural Network
I want to recognize Vehicles(Cars, Bikes etc.) from a static image.
I was thinking of using SURF to get me useful keypoints and descriptors and then train a MLP(Multi Layer Perceptron) Neural Network.
...
0
votes
0answers
275 views
Use SURF to match images in OpenCV\EmguCV
I'm working on the source code from here.
It seems that indices variable stores the match information, but I don't know how the information is stored.
For example, can you tell me how many matched ...
1
vote
0answers
49 views
Surf command Axis Scaling
I'm having an issue with moving the datum while plotting a 3D surface using the surf command in Matlab.
I have a matrix called RES with very small values (10^-5 or smaller, e.g. ...
0
votes
1answer
246 views
CVSurf (OpenCV) feature in iOS
I've an issue with OpenCV and iOS. I tried to implement SURF in my Xcode project but when I try to execute it, this error message appears:
OpenCV Error: The function/feature is not implemented ...



