フィルターのクリア

finding the best match between set of images using SIFT algorithm

14 ビュー (過去 30 日間)
KT
KT 2012 年 4 月 20 日
コメント済み: khalil yossefi 2020 年 1 月 6 日
i am implementing SIFT algorithm , where my purpose of using this is that i have a set of images and i want to find the best match against a single image which i have kept it as 'template image' , SIFT gives us matches and scores in return , where 'matches' represent the descriptors that were found to be same in both image, and 'scores' determined by euclidean method, now i am stuck at the point that how can i evaluate the best match amongst all the images with my template image, i figured out that when there is a exact match between two images the 'score' turns out to be zero , because descriptors position in both the images are same,so can anyone guide me through that how shall i go about it that i can say this image is the best match or the second best match against template but using 'scores'.
  1 件のコメント
Laraib Kanwal
Laraib Kanwal 2015 年 10 月 1 日
Comparing one image (query image) against database of millions of image, its the same thing you are doing? "visual search"

サインインしてコメントする。

採用された回答

Junaid
Junaid 2012 年 4 月 23 日
As I understood, you want to do image to image matching. Let say your template image is T, and you set of images D. Each image (including your template image) will have many SIFT descriptors (vectors of 128-D).
I suggest you to use VLFEAT for image matching. Though you have your own SIFT implementation but still for matching your can use VLFEAT library. There is function VL_UBCMATCH which is used for SIFT matching. For all set of SIFT vectors in T you will find matching with all the images in D. And That image has maximum number of matches is considered to be similar image.
Though there are many other techniques because in image to image matching there can be two entirely different images can be matched to gather, therefore, there are many other techniques to reject the out-liers.
  4 件のコメント
Explorer
Explorer 2013 年 11 月 2 日
Hello Junaid. Can you give me a demo code ?
khalil yossefi
khalil yossefi 2020 年 1 月 6 日
The link is broken, use this:

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeFeature Detection and Extraction についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by