-
Notifications
You must be signed in to change notification settings - Fork 8
Feature/se3vel #94
base: master
Are you sure you want to change the base?
Feature/se3vel #94
Conversation
@@ -68,6 +70,7 @@ typedef Eigen::Matrix<matData_t, 1,3> Mat13; | |||
typedef Eigen::Matrix<matData_t, 1,4> Mat14; | |||
typedef Eigen::Matrix<matData_t, 1,5> Mat15; | |||
typedef Eigen::Matrix<matData_t, 1,6> Mat16; | |||
typedef Eigen::Matrix<matData_t, 1,9> Mat19; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
actually, you can also use the form Mat<1,9> or Vec<9> but i guess this was more convenient... I
#include "mrob/SO3.hpp" | ||
|
||
namespace mrob{ | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
here requires a brief comment on the class, what kind of 5x5 structure is in here
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think you can also add a simple example (in cpp) of composition of do the python bindings, in addition to some comments inside
Also, it does not compile: https://github.com/MobileRoboticsSkoltech/mrob/runs/7648022437?check_suite_focus=true#step:4:51
} | ||
|
||
|
||
Mat3 SE3vel::left_jacobian(const Mat31& phi) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is this not inside SO3? If that is the case, should it be added directly there? I am ok adding an issue and changing SO3
} | ||
|
||
|
||
Mat3 SE3vel::inv_left_jacobian(const Mat31 &phi) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same case here, maybe this is better to be moved?
#include "mrob/SE3vel.hpp" | ||
|
||
namespace mrob | ||
{ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Brief explnation
Extended SE3 group added according to the Brossard paper "Associating Uncertainty to Extended Poses for on
Lie Group IMU Preintegration with Rotating Earth"