Rank SIFT

From testwiki
Revision as of 22:03, 13 January 2019 by imported>Timrollpickering (remove Category:Articles created via the Article Wizard per Wikipedia:Categories for discussion/Log/2019 January 6)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Rank SIFT algorithm is the revised SIFT (Scale-invariant feature transform) algorithm which uses ranking techniques to improve the performance of the SIFT algorithm. In fact, ranking techniques can be used in key point localization or descriptor generation of the original SIFT algorithm.

SIFT With Ranking Techniques

Ranking the Key Point

Ranking techniques can be used to keep certain number of key points which are detected by SIFT detector.[1]

Suppose {Im,m=0,1,...M} is a training image sequence and p is a key point obtained by SIFT detector. The following equation determines the rank of p in the key point set. Larger value of R(p) corresponds to the higher rank of p.

R(pI0)=mI(minqImHm(p)q2<ϵ),

where I(.) is the indicator function, Hm is the homography transformation from I0 to Im, and ϵ is the threshold.

Suppose xi is the feature descriptor of key point pi defined above. So xi can be labeled with the rank of pi in the feature vector space. Then the vector set Xfeaturespace={x1,x2,...} containing labeled elements can be used as a training set for the Ranking SVM[2] problem.

The learning process can be represented as follows:

minimize:V(w)=12wws.t. xi and xjXfeaturespace,wT(xixj)1if R(piI0)>R(pjI0).

The obtained optimal w* can be used to order the future key points.

Ranking the Elements of Descriptor

Ranking techniques also can be used to generate the key point descriptor.[3]

Suppose X={x1,...,xN} is the feature vector of a key point and the elements of R={r1,...rN} is the corresponding rank of xi in X. ri is defined as follows:

ri=|{xk:xkxi}|.

After transforming original feature vector X to the ordinal descriptor R, the difference between two ordinal descriptors can be evaluated in the following two measurements.

  • The Spearman correlation coefficient

The Spearman correlation coefficient also refers to Spearman's rank correlation coefficient. For two ordinal descriptors R and R', it can be proved that

ρ(R,R')=16i=1N(riri')2N(N21)

  • The Kendall's Tau

The Kendall's Tau also refers to Kendall tau rank correlation coefficient. In the above case, the Kendall's Tau between R and R' is

τ(R,R')=2i=1Nj=i+1Ns(rirj,ri'rj')N(N1),

wheres(a,b)={1,if sign(a)=sign(b)1,o.w.

References

Template:Reflist

  1. Bing Li; Rong Xiao; Zhiwei Li; Rui Cai; Bao-Liang Lu; Lei Zhang; "Rank-SIFT: Learning to rank repeatable local interest points", Computer Vision and Pattern Recognition (CVPR), 2011
  2. Joachims, T. (2003), "Optimizing Search Engines using Clickthrough Data", Proceedings of the ACM Conference on Knowledge Discovery and Data Mining
  3. Toews, M.; Wells, W."SIFT-Rank: Ordinal Description for Invariant Feature Correspondence", Computer Vision and Pattern Recognition, 2009.