SURF matching
17 ビュー (過去 30 日間)
古いコメントを表示
SURF descriptor will extract one vector with length 64. If i want to match between two regions, how am i going to match this two descriptor?i search a lot of information and mostly they use euclidean distance to get the value. if i use euclidean distance, how can i going to do that? by minus each 64 value with other 64 values in the other region? or each one value compare with other 64 value?if 64 * 64 =4096, then the process will be very time consuming! anyone pls answer me?!
2 件のコメント
回答 (1 件)
David Young
2011 年 8 月 15 日
The Euclidean distance between vectors A and B is computed simply using
norm(A-B)
This applies to SURF descriptor vectors too.
5 件のコメント
David Young
2011 年 8 月 17 日
You can either rotate the image patch, or you can rotate the kernels, but not both.
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!