corrected formula formatting in phaseCorrelate docs (thanks to the author for the patch)
This commit is contained in:
parent
4b46e35287
commit
d77cf38896
@ -144,7 +144,7 @@ The function supports multi-channel images. Each channel is processed independen
|
||||
|
||||
phaseCorrelate
|
||||
-------------------------------
|
||||
The function is used to detect translational shifts that occur between two images. The operation takes advantage of the Fourier shift theorem for detecting the translational shift in the frequency domain. It can be used for fast image registration as well as motion esitimation. For more information please see http://http://en.wikipedia.org/wiki/Phase\_correlation .
|
||||
The function is used to detect translational shifts that occur between two images. The operation takes advantage of the Fourier shift theorem for detecting the translational shift in the frequency domain. It can be used for fast image registration as well as motion esitimation. For more information please see http://en.wikipedia.org/wiki/Phase\_correlation .
|
||||
|
||||
Calculates the cross-power spectrum of two supplied source arrays. The arrays are padded if needed with ``getOptimalDFTSize`` .
|
||||
|
||||
@ -161,24 +161,28 @@ The function performs the following equations
|
||||
|
||||
*
|
||||
Next it computes the forward DFTs of each source array:
|
||||
..math:
|
||||
|
||||
.. math::
|
||||
\mathbf{G}_a = \mathcal{F}\{src_1\}, \; \mathbf{G}_b = \mathcal{F}\{src_2\}
|
||||
where
|
||||
:math:`\mathcal{F} is the forward DFT.`
|
||||
:math:`\mathcal{F}` is the forward DFT.
|
||||
|
||||
*
|
||||
It then computes the cross-power spectrum of each frequency domain array:
|
||||
..math:
|
||||
|
||||
.. math::
|
||||
R = \frac{ \mathbf{G}_a \mathbf{G}_b^*}{|\mathbf{G}_a \mathbf{G}_b^*|}
|
||||
|
||||
*
|
||||
Next the cross-correlation is converted back into the time domain via the inverse DFT:
|
||||
..math:
|
||||
|
||||
.. math::
|
||||
r = \mathcal{F}^{-1}\{R\}
|
||||
*
|
||||
Finally, it computes the peak location and computes a 5x5 weighted centroid around the peak to achieve sub-pixel accuracy.
|
||||
..math:
|
||||
(\Delta x, \Delta y) = \textrm{weighted_centroid}\{\arg \max_{(x, y)}\{r\}\}
|
||||
|
||||
.. math::
|
||||
(\Delta x, \Delta y) = \texttt{weighted_centroid}\{\arg \max_{(x, y)}\{r\}\}
|
||||
|
||||
.. seealso::
|
||||
:ocv:func:`dft`,
|
||||
@ -196,7 +200,8 @@ This function computes a Hanning window coefficients in two dimensions. See http
|
||||
:param winSize: The window size specifications
|
||||
:param type: Created array type
|
||||
|
||||
::
|
||||
An example is shown below: ::
|
||||
|
||||
// create hanning window of size 100x100 and type CV_32F
|
||||
Mat hann;
|
||||
createHanningWindow(hann, Size(100, 100), CV_32F);
|
||||
|
Loading…
Reference in New Issue
Block a user