flann Questions

0

I am currently testing Flann feature matching with OpenCV in python, and do not fully understand what some of the parameters actually do. Here is a snippet of code copied from the OpenCV docs. The ...

3

When I tried to use drawMatchesKnn function as mentioned in this tutorial for FLANN feature matching, I get the following error AttributeError: 'module' object has no attribute 'drawMatchesKnn' ...
Sandhi asked 24/11, 2013 at 9:20

2

Solved

I am currently trying to implement ORB with FLANN, I have read the documentation and it said that when using ORB with FLANN I have to use: index_params= dict(algorithm = FLANN_INDEX_LSH, table_nu...
Constanta asked 13/4, 2017 at 11:8

2

Solved

I have a piece of code for matching features between a movie clip and a reference image. It generally works well, but sometimes it throws an error in the middle of a clip. Since it's always in the ...
Daedalus asked 30/8, 2018 at 12:3

3

Solved

I am using OpenCV 3.2 I am trying to use FLANN to match features descriptors in a faster way than brute force. // Ratio to the second neighbor to consider a good match. #define RATIO 0.75 void m...
Palmapalmaceous asked 7/5, 2017 at 11:20

3

Solved

I am running Ubuntu 14.04. I am trying to run FLANN with openCV 3 but I get an error. Everything bellow was tried by using AKAZE and ORB but the code if from my attempt to use ORB. I use ORB to f...
Abixah asked 17/4, 2015 at 8:48

1

Solved

I am working on an image search project for which i have defined/extracted the key point features using my own algorithm. Initially i extracted only single feature and tried to match using cv2.Flan...
Gaeta asked 15/2, 2018 at 11:46

1

Solved

I have a panorama image, and a smaller image of buildings seen within that panorama image. What I want to do is recognise if the buildings in that smaller image are in that panorama image, and how ...
Cherilyncherilynn asked 11/1, 2018 at 11:27

1

In python, OpenCV's FlannBasedMatcher constructor takes a dictionary of parametres, the first of which is algorithm. The python tutorial suggests that one can specify different values of algorithm ...
Crippen asked 22/2, 2017 at 16:25

0

I am trying to scale the "matching_to_many_images.cpp" for large set of images. (20K+ images) https://github.com/kipr/opencv/blob/master/samples/cpp/matching_to_many_images.cpp I use FLANN based m...
Interposition asked 24/10, 2016 at 6:15

4

Solved

I want to use a flann-based matcher in Python as described in http://opencv-python-tutroals.readthedocs.org/en/latest/py_tutorials/py_feature2d/py_matcher/py_matcher.html Since I am using OpenCV 3...
Arthritis asked 4/10, 2015 at 9:10

1

In my opencv project, I want to detect copy-move forgery in an image. I know how to use the opencv FLANN for feature matching in 2 different image, but I am become so confused on how to use FLANN f...
Zwickau asked 11/3, 2016 at 23:8

1

Solved

Trying to build PCL on VS2012 in Windows 8.1 so I can attempt to integrate my Kinect for Windows v2 sensor with it, however I seem to be running into a bunch of CMake errors that I don't know what ...
Collyrium asked 6/11, 2014 at 15:20

2

[Request you to read question details before marking it duplicate or down-voting it. I have searched thoroughly and couldn't find a solution and hence posting the question here.] I am trying to co...
Colonialism asked 6/6, 2014 at 17:47

3

Solved

How can I optimise the SIFT feature matching for many pictures using FLANN? I have a working example taken from the Python OpenCV docs. However this is comparing one image with another and it's sl...
Dekker asked 8/3, 2014 at 17:0

2

The point of the application is to recognize an image from an already set list of images. The list of images have had their SIFT descriptors extracted and saved in files. Nothing interesting here: ...
Rough asked 14/5, 2014 at 12:41

1

Solved

I was wandering what the best approach would be for detecting 'figures' in an array of 2D points. In this example I have two 'templates'. Figure 1 is a template and figure 2 is a template. Each of...
Unseasonable asked 17/12, 2013 at 19:10
1

© 2022 - 2024 — McMap. All rights reserved.