Normalized Correlation
Mostra commenti meno recenti
I have a vector A 1x512 and a matrix M 512 x 512. I need to value the normalized correlation between A and the ith row of the matrix M.
I think:
corr_rows = zeros(1,512);
for i=1:512
Row = A(i,:);
corr_rows(i) = corr2(A,Row);
end
Is It correct? And the normalization?
Thanks!!!
Risposta accettata
Più risposte (1)
Image Analyst
il 25 Ott 2011
0 voti
If you want normalized, then you'll have to use normxcorr2() instead of xcorr2.
1 Commento
Bruno Bertini
il 26 Ott 2011
Categorie
Scopri di più su Correlation and Convolution in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!