sift Questions

5

I am learning C++ and OpenCV these days. Given an image, I want to extract its SIFT features. From http://docs.opencv.org/modules/nonfree/doc/feature_detection.html, we can know that OpenCV 2.4.8 h...
Catastrophism asked 28/3, 2014 at 20:38

2

I am trying to run basic script found on a tutorial for object detection. I have tried everything I could find on web but failed to solve it. Already tried different suggested methods to convert im...
Clipclop asked 11/5, 2018 at 18:36

22

Solved

I'm trying a simple thing like detector = cv2.SIFT() and get this bad error detector = cv2.SIFT() AttributeError: 'module' object has no attribute 'SIFT' I do not understand that because cv2 ...
Yoga asked 1/9, 2013 at 19:9

4

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...
Maximo asked 17/7, 2011 at 8:40

9

Solved

I am trying to run the simplest opencv SIFT code through the shell of Ubuntu, with no luck I get an error: AttributeError: 'module' object has no attribute 'SURF' The code: import cv2 cv2.SIF...
Mathes asked 9/2, 2014 at 18:55

6

I am using Ubuntu 12.04. I recently installed OpenCV 3.0 from https://github.com/Itseez/opencv/archive/3.0.0-alpha.zip. I want to do feature matching for which I used the following code: import nu...
Invoice asked 9/9, 2014 at 2:16

5

I am using OpenCV v4.20 and PyCharm IDE. I want to use SIFT algorithm. But I get this error. I looked for solutions of this error on the internet but none of them did help me. Do you know the solut...
Kirbee asked 4/2, 2020 at 21:21

3

Solved

Suppose I have a set of N images and I have already computed the SIFT descriptors of each image. I know would like to compute the matches between the different features. I have heard that a common ...
Bitstock asked 5/7, 2018 at 17:37

1

I try to use the SIFT and SURF function with some of the versions of OpenCV 3 and openCV 4 (after having installed opencv-contrib-python) with: pip install opencv-contrib-python i try versio...
Herne asked 25/10, 2020 at 14:55

3

I tried object detection for a couple of different objects both using David Lowe's implementation and OpenCV implementation (just changed 'SurfFeatureDetector' -> 'SiftFeatureDetector' and 'SurfDes...
Clothilde asked 18/1, 2013 at 9:46

2

Solved

I just discovered that SIFT writes the Octave as packed value (octave, layer and scale). I need this value unpacked since I have to use SIFT detector in combination with other descriptors (ORB, BRI...
Mannose asked 22/1, 2018 at 16:1

4

I am working on a project in which the two images will be checked for similarity like 'Google Image Search by image'. I searched through Google and also on various sites including stackoverflow an...
Codify asked 6/8, 2014 at 16:21

2

Solved

I have OpenCV 3.0, and I have compiled & installed it with the opencv_contrib module so that's not a problem. Unfortunately the examples from previous versions do not work with the current one,...
Spleeny asked 17/12, 2014 at 19:21

6

Solved

Does someone know the link of example of SIFT implementation with OpenCV 2.2. regards,
Collapse asked 28/3, 2011 at 15:18

4

Solved

I am trying to use FLANN with ORB descriptors, but opencv crashes with this simple code: vector<vector<KeyPoint> > dbKeypoints; vector<Mat> dbDescriptors; vector<Mat> objec...
Moira asked 19/7, 2012 at 16:29

1

I'm trying to use OpenCV to detect and extract ORB features from images. However, the images I'm getting are not normalized (different size, different resolutions, etc...). I was wondering if I n...
Jourdain asked 7/10, 2018 at 14:9

2

I'm trying to follow this tutorial with my own images.However, the results I get are not exeacty what I'd exepct. Am I missing something here, or is SIFT just not a good enough solution in this cas...
Pikeperch asked 5/8, 2018 at 10:20

1

How can I draw a bounding box on best matches in BF MATCHER using Python?
Iodine asked 31/7, 2018 at 5:51

1

I am getting an error: line 33, in <module> img3 = cv2.drawMatches(img1,kp1,img2,kp2,matches,None,flags=2) TypeError: Expected cv::DMatch for argument 'matches1to2' When I try to execute ...
Waive asked 2/1, 2018 at 15:24

1

Solved

I need to get the similarity score of two images, I'm using the SIFT Comparison, I've followed the tutorial Feature Matching but It's missing the score calculation. You'll find below the code That ...
Umbra asked 7/5, 2018 at 15:10

2

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, ...
Pockmark asked 25/1, 2012 at 9:49

2

I am trying to extract features from a rectangle image. But I want to ignore certain part of the image, so that no features are extracted from the these areas inside the image. I can think of two a...
Soupy asked 27/9, 2017 at 11:46

3

I have an image of the target logo that I am trying to use to find target logos in other images. I am currently running two different detection algorithms to help me detect any logos on the image. ...
Speechmaking asked 26/7, 2011 at 15:9

2

I have an issues with my swift application. I'm using UIWebview and I been getting the following error: [AVFigEndpointPickerOutputContextImpl sharedAudioPresentationOutputContext]: Audio present...
Giffin asked 13/7, 2017 at 18:59

6

Solved

I am testing some object detection with SURF and SIFT. SURF claims to be faster and more robust than SIFT but I found in my test that this is not true. SIFT with medium images (600*400) is the sam...
Ypres asked 23/6, 2012 at 19:36

© 2022 - 2024 — McMap. All rights reserved.