Commit d174c3db authored by Alexander Shishkov's avatar Alexander Shishkov

fixed compilation errors in TeX

parent d0693965
...@@ -162,7 +162,6 @@ The function performs the following equations ...@@ -162,7 +162,6 @@ The function performs the following equations
* *
Next it computes the forward DFTs of each source array: 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\} \mathbf{G}_a = \mathcal{F}\{src_1\}, \; \mathbf{G}_b = \mathcal{F}\{src_2\}
where where
...@@ -170,18 +169,15 @@ The function performs the following equations ...@@ -170,18 +169,15 @@ The function performs the following equations
* *
It then computes the cross-power spectrum of each frequency domain array: 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^*|} 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: Next the cross-correlation is converted back into the time domain via the inverse DFT:
.. math:: .. math::
r = \mathcal{F}^{-1}\{R\} 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. Finally, it computes the peak location and computes a 5x5 weighted centroid around the peak to achieve sub-pixel accuracy.
.. math:: .. math::
(\Delta x, \Delta y) = \texttt{weighted_centroid}\{\arg \max_{(x, y)}\{r\}\} (\Delta x, \Delta y) = \texttt{weighted_centroid}\{\arg \max_{(x, y)}\{r\}\}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment