Normxcorr2 and xcorr2

Hi
I'm trying to perform a 2D autocorrelation using the two functions. The problem is that I am getting different results using the seemingly same functions. The help document although mentions that Normxcorr2 requires the size of the image to be larger than the template. Does this mean that normxcorr2 doesn't work for autocorrelation and returns incorrect results? I don't understand how a correlation function cannot work for autocorrelation. I need a normalized 2D autocorrelation and Normxcorr2 is getting me really confused. Any help will be really appreciated.

1 comentario

RITIKA MALIK
RITIKA MALIK el 30 de Jun. de 2022
https://in.mathworks.com/matlabcentral/answers/95436-why-are-my-results-different-in-xcorr2-and-normxcorr2-in-matlab-7-7-r2008b#answer_104789

Iniciar sesión para comentar.

Respuestas (2)

David Young
David Young el 29 de Nov. de 2011

1 voto

The functions are not the same: normxcorr2 normalises (i.e. divides by the product of the local standard deviations) but xcorr2 does not.
EDIT: add
In addition, normxcorr2 subtracts the mean of the template before performing the multiplications. This changes the results greatly - for example, it can easily change the sign of some of the values. On top of this, when the functions are used for autocorrelation calculations, mean removal interacts with zero-padding of the arrays to change the results in quite hard-to-understand ways.
All the same, there's no question of normxcorr2 being unreliable. It just implements a different function to xcorr2. Which one of them does autocorrelation depends on how you define autocorrelation.
What you have to do is decide exactly what you want to compute and compare it to the equations given in the documentation for the functions. The terminology round autocorrelation/autocovariance isn't used consistently, so it is essential to look at the equations.

2 comentarios

richard
richard el 30 de Nov. de 2011
Thanks but I am well aware of that. I am getting different results that can't be explained by normalization and my key question is whether Normxcorr2 can be used for autocorrelation reliably.
David Young
David Young el 30 de Nov. de 2011
Yes, there are other differences too. I'll edit my answer rather than putting them in a comment.

Iniciar sesión para comentar.

Dirk Padfield
Dirk Padfield el 26 de Dic. de 2013

0 votos

This is exactly the same problem I noticed with normxcorr2, and this was the reason I contributed the following file
Hopefully this helps solve your issue.

Preguntada:

el 29 de Nov. de 2011

Comentada:

el 30 de Jun. de 2022

Community Treasure Hunt

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

Start Hunting!

Translated by