I am reading this paper (explanation of Horn-Shunck method for finding optical flow) and trying to understand it. My stumbling block is obtainig solution of system of linear equations


I(x, y, t) - brightness of the image at point (x, y) at time t, alpha - just regularization coefficient, u and v - optical flow to find
Horn and Schunck proposed this iterative solution based on Gauss–Seidel method (page number nine in paper). But my math skill is not enough to understand how to obtain this formula


Can anyone explain me this solution?
P.S. Sorry for my poor english
The system has the structure $$ (α^2I+bb^T)x = α^2\bar x-\gamma b, ~~ x=\pmatrix{u\\v}, ~~ b=\pmatrix{I_x\\I_y}, ~~ γ=I_t. $$ Projection along $b$ gives $$ (α^2+|b|^2)(b^Tx)=α^2(b^T\bar x)-γ|b|^2 $$ and inserted back $$ α^2x=α^2\bar x-γ b-(b^Tx)b =α^2\bar x-\frac{γ(α^2+|b|^2)+α^2(b^T\bar x)-γ |b|^2}{α^2+|b|^2}b \\~\\ \implies x=\bar x-\frac{γ+(b^T\bar x)}{α^2+|b|^2}b $$ which corresponds to the second cited system.
This is still a fixed-point equation, as $\bar x$ is some average over $x$. If this is applied as fixed-point iteration to all locations first, followed by the computation of new averages, then the method corresponds to the Jacobi iteration. If the averages are always updated after the computation of new values at each location, then this corresponds to the Gauß-Seidel iteration.