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
The reproject function called in lgmath::se3::Transformation's constructor (and other spots) is conditioned on det(C) = 1 but this is not a sufficient check to determine if C is in SO(3)
Therefore, users could create a Transformation with C_ab_ = diag(2,0.5,1), for example
Even when constructed properly, round-off error can stack up in rare cases if matrix is never forcibly reprojected
May want to add check that C^T * C = 1, if computationally feasible
The text was updated successfully, but these errors were encountered:
lgmath::se3::Transformation
's constructor (and other spots) is conditioned on det(C) = 1 but this is not a sufficient check to determine if C is in SO(3)Transformation
withC_ab_
= diag(2,0.5,1), for exampleThe text was updated successfully, but these errors were encountered: