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
I guess line 794 in g2otypes.cpp is wrong, which calculates the jacobian of reproject error w.r.t. dPwb, while theannotation(line 793) is right.
793 //Matrix3d J_Pc_dPwb = -Rcb;
794 Matrix<double,2,3> JdPwb = - Jpi * (-Rcb*Rwb.transpose());
not (-Rcb*Rwb.transpose()) but -Rcb
The text was updated successfully, but these errors were encountered:
I guess line 794 in g2otypes.cpp is wrong, which calculates the jacobian of reproject error w.r.t. dPwb, while theannotation(line 793) is right.
793 //Matrix3d J_Pc_dPwb = -Rcb;
794 Matrix<double,2,3> JdPwb = - Jpi * (-Rcb*Rwb.transpose());
not (-Rcb*Rwb.transpose()) but -Rcb
The text was updated successfully, but these errors were encountered: