Finding Correspondences lec4

similarity measure
********************
SAD: Sum of Absolute Differences
SAD=Σin|Xi-Yi|

(similar lighting)some distinct points work well others don’t such as: edges, areas of uniformity
(some lighting changes and slight (2 degrees)rotation)SAD adds up constant lighting changes.

If two images are identical, but offset(偏移) in greyscale intensity by D, then the SAD score will differ by nD
**********************
SSD: Sum of Squared Differences
SSD=Σi(Xi-Yi)2
Enhances effect of very different pixels

Derive how SSD is the same as NCC if patches are normalized
(done on the board, show normalized SSD=2-2NCC : the bigger NCC is, the lower SSD is

Correlation =ΣinXiYi
•NCC =(ΣXiYi)/(||X|| ||Y||) -turn each patch into unit vector
•CSM = Σ(Xi-Xu)(Yi-Yu) -subtract mean for lighting level
•VNC =(Σ(Xi-Xu)(Yi-Yu) /Nsd(X)sd(Y)
        =(Σ(Xi-Xu)(Yi-Yu)/Nsqrt[Σ(Xi-Xu)(Xi-Xu)/N]sqrt[Σ(Yi-Yu)(Yi-Yu)/N]-compensate for both lighting level and brightnes

 

posted on 2013-12-07 15:05  Aliceye  阅读(136)  评论(0编辑  收藏  举报

导航