Borrar filtros
Borrar filtros

How to match the features in a single image?

3 visualizaciones (últimos 30 días)
sehreen
sehreen el 9 de Feb. de 2014
Comentada: ritu agarwal el 8 de Mayo de 2018
I need to identify the duplicate regions in an image for that i am using SURF algorithm. detectSURFFeatures() method is used to detect features and featureExtraction() is used for feature description. now i want to match the feature descriptors and identify the similar features and display only matched features on the image. so please tell me how do i match the features.
there is a function matchFeatures() which is used to match features between two sets of features extracted from two images but i need to match the the features of single image. can i use this function if yes then how? or there is some other solution.

Respuestas (1)

Dima Lisin
Dima Lisin el 16 de Jul. de 2014
Unfortunately, matchFeatures() is not really suited for this task. You would have to write your own code to do the matching. You would need to take each feature descriptor and compare it against all the remaining features, to find its nearest neighbor. The simplest thing is to use a simple threshold to decide whether or not the nearest neighbor is a match.
  1 comentario
ritu agarwal
ritu agarwal el 8 de Mayo de 2018
after the matching if we want to localise the matched features and display on the image, how do we do that

Iniciar sesión para comentar.

Categorías

Más información sobre Feature Detection and Extraction en Help Center y File Exchange.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by