Skip to content

Matlab implementation of Graph-based Affine Invariant keypoint Matching (GAIM). From the peer reviewed ECCV 2014 paper "An Analysis of Errors in Graph-based Keypoint Matching and Proposed Solutions" by Toby Collins, Pablo Mesejo and Adrien Bartoli

License

Notifications You must be signed in to change notification settings

tobycollins/GAIM

Repository files navigation

GAIM

This is the Matlab implementation of Graph-based Affine Invariant keypoint Matching (GAIM) from the peer reviewed paper "An Analysis of Errors in Graph-based Keypoint Matching and Proposed Solutions" by Toby Collins, Pablo Mesejo and Adrien Bartoli, published in the European Conference on Computer Vision, September 2014. GAIM solves the general keypoint-based graph matching problem for two images. It does not require prior knowledge about the number of objects, the amount of occlusion, the amount of non-rigid motion between the images, the amount of background clutter, nor the objects' topologies (which can change if e.g. an object tears). This is the author's implementation. Please cite the paper if you use any part of this code in your work. Above all, we hope that you will find this code useful.

Graph-based keypoint matching is a very difficult computer vision problem, is not yet completely solved, and requires ongoing research. The problem involves detecting keypoints (or features) in the two images using e.g. SIFT or SURF, and then matching the keypoints using their descriptors and geometric constraints between neighbouring keypoints. Solutions are important for several applications, including non-rigid object tracking, registration, and non-rigid scene understanding. For it to work, the objects in the image must be well textured (so that keypoints can be detected), and the images should not be badly corrupted by noise, blur or compression artefacts. We must also be looking at the same object in the two images. The object can however undergo deformation and be occluded either by itself or by other objects. Any extensions or improvements to GAIM are most welcome.

The entry-level function is GAIM_matcher. Please call GAIM_example() to run GAIM on three example image pairs, given in ./examples ('cardboard', 'desktop' and 'tear').

Setting dependencies and compilation has been made as easy as possible. We include a function to automatically download and compile the necessary dependencies (setGAIMDependencies()). This gets called automatically when you run GAIM_example(). This has been tested on Linux (Ubuntu 14.04 b4bit) and windows (version 10 64bit).

If you already have local copies of the dependency libraries, you can set the paths accordingly in setGAIMDependencies. If not, they will be downloaded from the web. The dependencies are as follows:

FLANN: http://www.cs.ubc.ca/research/flann/#download Tested with version 1.8.0. Requires compiling.

UGM: http://www.cs.ubc.ca/~schmidtm/Software/UGM.html Tested with 2011 version. Does not require compiling.

FBDSD (included) by Daniel Pizarro (http://isit.u-clermont1.fr/en/content/Daniel-Pizarro): Library included in ./dep. Tested with version FBDSDv1.0. If you use FBDSD please refer to Daniel's webpage and software section to correctly cite his work and for licence terms. Does not require compiling.

QPBO (included) by Vladimir Kolmogorov (http://pub.ist.ac.at/~vnk/). Library included in ./dep. Using mex wrapper by Oxford university's VGG libraries (http://www.robots.ox.ac.uk/~vgg/software/). If you use QPBO please refer to Vladimir's webpage and software section to correctly cite his work and for licence terms. Requires compiling.

VLFEAT: http://www.vlfeat.org Tested with version 0.9.20 Requires compiling (pre-built binaries available).

About

Matlab implementation of Graph-based Affine Invariant keypoint Matching (GAIM). From the peer reviewed ECCV 2014 paper "An Analysis of Errors in Graph-based Keypoint Matching and Proposed Solutions" by Toby Collins, Pablo Mesejo and Adrien Bartoli

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published