You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is a Kannala-Brandt camera distortion realization in /farm-ng-core/cpp/sophus/sensor/kannala_brandt.h file. Is it an error in function undistort(), line 119?
TScalar th = sqrt(rth);
May be the correct formula has to be:
TScalar th = atan(rth); ?
The text was updated successfully, but these errors were encountered:
There is a Kannala-Brandt camera distortion realization in /farm-ng-core/cpp/sophus/sensor/kannala_brandt.h file. Is it an error in function undistort(), line 119?
TScalar th = sqrt(rth);
May be the correct formula has to be:
TScalar th = atan(rth); ?
The text was updated successfully, but these errors were encountered: