Updated by Andrey Kamaev about 13 years ago

In: In:-
https://code.ros.org/trac/opencv/browser/tags/2.3.1/opencv/modules/calib3d/src/fundam.cpp

Line:-133
*LtL[j][k] += Lx[j]*Lx[k] + Ly[j]*Ly[k]*;

Here @+@ (in @+=@) *+*(in '+=') is not needed as LtL is not having any previous values but zeros.

Back